The official Courier C# library, supporting .NET Standard, .NET Core, and .NET Framework.
Using the .NET Core command-line interface (CLI) tools:
dotnet add package Courier.Client
Using the NuGet Command Line Interface (CLI):
nuget install Courier.Client
API reference documentation is available here.
Below are code snippets of how you can use the C# SDK.
using Courier.Client;
Courier courier = new Courier("YOUR_API_KEY")
Agent agent = courier.SendAsync(
new SendMessageRequest {
...
}
);
When the API returns a non-zero status code, (4xx or 5xx response), a subclass of CourierException will be thrown:
using Courier.Client;
try {
courier.SendAsync(...);
} catch (CourierException e) {
System.Console.WriteLine(e.Message)
System.Console.WriteLine(e.StatusCode)
}
429 Rate Limit, and >=500 Internal errors will all be retried twice with exponential backoff. You can override this behavior globally or per-request.
var courier = new Courier("...", new ClientOptions {
MaxRetries = 1 // Only retry once
});
The SDK defaults to a 60s timeout. You can override this behaviour globally or per-request.
var courier = new Courier("...", new ClientOptions {
TimeoutInSeconds = 20 // Lower timeout
});
You can override the HttpClient by passing in ClientOptions
.
var courier = new Courier("YOUR_API_KEY", new ClientOptions {
HttpClient = ... // Override the Http Client
BaseURL = ... // Override the Base URL
})
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to Courier it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!