Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

Docs Swagger Examples Blog Support Release Notes Dashboard

Installation

The package is available at nuget.org and it can be installed via package manager console by executing following command:

PM> NuGet\Install-Package GroupDocs.signature-Cloud

Version NuGet NuGet-GroupDocsCloud


Quick Start

1. Create an Account

Sign up for a free account at GroupDocs Cloud Dashboard.

2. Create an API Client App

Get your Client ID and Client Secret by creating a new application. These credentials will allow you to make requests to the GroupDocs Cloud API.

3. Install the SDK

You don’t need to install anything initially to start using GroupDocs.Signature Cloud SDK for .NET.

  • To add the SDK to your project, run the following command in the Visual Studio Package Manager Console:

    Install-Package GroupDocs.Signature-Cloud
    
  • If you’re upgrading the SDK, run:

    Update-Package GroupDocs.Signature-Cloud
    

4. Make an API Request

Use your Client ID and Client Secret to make API requests. Here’s an example of getting supported file formats using the SDK:

// Example: Get supported file formats using GroupDocs.Signature Cloud SDK
string MyClientSecret = "";  // Get from https://dashboard.groupdocs.cloud
string MyClientId = "";      // Get from https://dashboard.groupdocs.cloud

var configuration = new Configuration(MyClientId, MyClientSecret);
var apiInstance = new InfoApi(configuration);
var response = apiInstance.GetSupportedFileFormats();

Sign DOCX Document with Image Signature using C# Code

// For complete examples and data files, please go to https://github.com/groupdocs-signature-cloud/groupdocs-signature-cloud-dotnet-samples
// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
string MyClientSecret = "";
string MyClientId = "";

var configuration = new Configuration(MyClientId, MyClientSecret);
var apiInstance = new SignApi(configuration);

// Sign options
var options = new SignImageOptions {
    SignatureType = SignatureTypeEnum.Image,
        ImageFilePath = "signature.jpg",
        Left = 100,
        Top = 100,
        Width = 200,
        Height = 100,
        LocationMeasureType = SignImageOptions.LocationMeasureTypeEnum.Pixels,
        SizeMeasureType = SignImageOptions.SizeMeasureTypeEnum.Pixels,
        RotationAngle = 0,
        HorizontalAlignment = SignImageOptions.HorizontalAlignmentEnum.None,
        VerticalAlignment = SignImageOptions.VerticalAlignmentEnum.None,
        Margin = new Padding {
            All = 5
        },
        MarginMeasureType = SignImageOptions.MarginMeasureTypeEnum.Pixels,
        Page = 1,
        AllPages = true,
        PagesSetup = new PagesSetup {
            EvenPages = false,
                FirstPage = true,
                LastPage = false,
                OddPages = false,
                PageNumbers = new List < int ? > {
                    1
                }
        }
};
// Sign settings.
var signSettings = new SignSettings {
    FileInfo = new FileInfo {
            FilePath = "one-page.docx"
        },
        SaveOptions = new SaveOptions {
            OutputFilePath = "signedImage_one-page.docx", SaveFormat = "docx"
        },
        Options = new List < SignOptions > {
            options
        }
};
// Create request.
var request = new CreateSignaturesRequest(signSettings);
// Call api method with request.
var response = apiInstance.CreateSignatures(request);

Docs Swagger Examples Blog Support Release Notes Dashboard



 English