> ## Documentation Index
> Fetch the complete documentation index at: https://apidoc.sign.plus/llms.txt
> Use this file to discover all available pages before exploring further.

# Install

Install the Signplus C# SDK package

```bash theme={null}
dotnet add package Alohi.Signplus
```

Call your first SDK method

```csharp theme={null}
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);
```
