C#
Install
Install the Signplus C# SDK package
Call your first SDK method
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
dotnet add package Alohi.Signplus
using Signplus;
using Signplus.Config;
using Environment = Signplus.Http.Environment;
var config = new SignplusConfig
{
Environment = Environment.Default,
AccessToken = "YOUR_ACCESS_TOKEN"
};
var client = new SignplusClient(config);
var response = await client.Signplus.GetEnvelopeAsync("envelope_id");
Console.WriteLine(response);