Build tools to convert documents and images of popular file formats back and forth using .NET Cloud SDK for document conversion & REST API.
Start Free TrialThe GroupDocs.Conversion Cloud SDK for .NET has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
Configuration
using available AppSid
and AppKey
.ConversionApi
using instance of Configuration
.ConvertSettings
to change our conversion settings.ConvertSettings.FilePath
property.ConvertSettings.Format
property.ConvertSettings.OutputPath
property.ConvertDocumentRequest
using instance of ConvertSettings
.ConversionApi.ConvertDocument
method to start conversion.Check out GroupDocs.Conversion Cloud SDK for .NET at GitHub if you are looking for the source code to convert file in the Cloud.
You can try GroupDocs.Conversion Low-Code .NET APIs without any limitations.
GroupDocs.Conversion Cloud is also available as Docker image which can be used to self-host the service. Or you may build your own services using GroupDocs.Conversion High-code APIs which currently drive our REST APIs.
GroupDocs.Conversion REST API has the capability to perform conversion on a number of document formats. The information about the formats supported by the API can be obtained by using the code mentioned below:
//Get your AppSID, AppKey and StorageName at https://dashboard.groupdocs.cloud (free registration is required).
var configuration = new Configuration("AppSID", "AppKey");
var apiInstance = new ConversionApi(configuration);
// Convert Settings
var settings = new ConvertSettings
{
StorageName = "StorageName",
FilePath = "conversions/sample.docx",
Format = "jpeg",
ConvertOptions = convertOptions,
OutputPath = "converted/"
};
// Convert to Specified Format
List response = apiInstance.ConvertDocument(new ConvertDocumentRequest(settings));
With GroupDocs.Conversion Cloud API, you can start converting your files right away as there is no need to install anything. The API is clearly documented and comes with SDKs and live examples for all major languages. Our GroupDocs.Conversion SDKs along with working examples hosted at Github helps our users to get started in no time.
The GroupDocs.Conversion Cloud API is secured and requires authentication. You need to register at GroupDocs Cloud and get the app access key ID (appSID) and app secret access key. Authenticated requests require a signature and AppSID query parameters or OAuth 2.0 authorization header.
The easiest way to try out GroupDocs.Conversion Cloud API right away in your browser is by using GroupDocs Cloud Web API explorer, which is a collection of Swagger documentation for the GroupDocs Cloud APIs.It allows you to effortlessly interact and try out every single operation our APIs exposes.