signicat / signicat-express-net

.NET SDK for Signicat Express REST API

Home Page:http://developer.signicat.com/express

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Signicat Express .NET SDK

Tests NuGet

A .NET SDK for simple integration with the Signicat Express REST API.

Supports .NET Standard 2.0+, .NET Core 2.0+ and .NET Framework 4.6.1+.

Installation

Using NuGet is the easiest way to install the SDK.

Package Manager:

PM > Install-Package Signicat.Express.SDK

.NET Core CLI:

dotnet add package Signicat.Express.SDK

Documentation

Sample Usage

The example below shows how to get the details of a specific document.

// Set your credentials and desired scopes
SignicatConfiguration.SetClientCredentials("clientId", "clientSecret",
    new[] {OAuthScope.DocumentRead, OAuthScope.DocumentWrite});

// Make a call to retrieve the document
var signatureService = new SignatureService();
var document = signatureService.GetDocument(documentId);

Console.WriteLine($"Retrieved document: {document.Title}");

Support

About

.NET SDK for Signicat Express REST API

http://developer.signicat.com/express

License:Apache License 2.0


Languages

Language:C# 99.6%Language:PowerShell 0.4%