An open API service indexing awesome lists of open source software.

https://github.com/groupdocs-signature-cloud/groupdocs-signature-cloud-dotnet

.NET library for communicating with the GroupDocs.Signature Cloud API.
https://github.com/groupdocs-signature-cloud/groupdocs-signature-cloud-dotnet

documents docx image nuget pdf pptx sdk signature-cloud-api signature-cloud-sdk xlsx

Last synced: 3 months ago
JSON representation

.NET library for communicating with the GroupDocs.Signature Cloud API.

Awesome Lists containing this project

README

          

# GroupDocs.Signature Cloud SDK for .NET
This repository contains GroupDocs.Signature Cloud SDK for .NET source code. This SDK allows you to work with GroupDocs.Signature Cloud REST APIs in your .NET applications.

## How to use the SDK?
The complete source code is available in this repository folder, you can either directly use it in your project via NuGet package manager. For more details, please visit our [documentation website](https://wiki.groupdocs.cloud/display/signaturecloud/Available+SDKs#AvailableSDKs-.NET).

## Dependencies
- [Json.NET](https://www.nuget.org/packages/Newtonsoft.Json)

## Getting Started

```csharp
using System;
using System.Diagnostics;
using GroupDocs.Signature.Cloud.Sdk.Api;
using GroupDocs.Signature.Cloud.Sdk.Client;

namespace Example
{
public class Example
{
public void Main()
{
//TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";

var config = new Configuration(appSid, appKey)
{
ApiBaseUrl = "https://api.groupdocs.cloud"
};

var api = new InfoApi(config);

try
{
// Get supported file formats
var response = api.GetSupportedFileFormats();

foreach (var format in response.Formats)
{
Debug.Print(format.ToString());
}
}
catch (Exception e)
{
Debug.Print("Something went wrong: " + e.Message);
}
}
}
}
```

## Licensing
All GroupDocs.Signature Cloud SDKs are licensed under [MIT License](LICENSE).

## Resources
+ [**Website**](https://www.groupdocs.cloud)
+ [**Product Home**](https://products.groupdocs.cloud/signature)
+ [**Documentation**](https://wiki.groupdocs.cloud/display/signaturecloud/Home)
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/signature)
+ [**Blog**](https://blog.groupdocs.cloud/category/signature)

## Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/signature).