Blueink .NET SDK
The Blueink .NET SDK provides a convenient way to interact with the Blueink eSignature API from your .NET applications.
GitHub Repository
The SDK is open source and available on GitHub: Blueink .NET SDK
Installation
Install the package via NuGet:
dotnet add package Blueink.Client.Net
Basic Usage
using Blueink.Client.Net;
var client = new BlueinkClient("your_api_key_here");
// List Bundles
var bundles = await client.Bundles.List();
foreach (var bundle in bundles)
{
Console.WriteLine($"ID: {bundle.Id}, Status: {bundle.Status}");
}
For more details and examples, visit the GitHub repository.