Note
The Courier C# API Library is currently in beta and we're excited for you to experiment with it!
This library has not yet been exhaustively tested in production environments and may be missing some features you'd expect in a stable release. As we continue development, there may be breaking changes that require updates to your code.
We'd love your feedback! Please share any suggestions, bug reports, feature requests, or general thoughts by filing an issue.
The Courier C# SDK provides convenient access to the Courier REST API from applications written in C#.
It is generated with Stainless.
git clone git@github.com:trycourier/courier-csharp.git
dotnet add reference courier-csharp/src/CourierThis library requires .NET 8 or later.
Note
The library is currently in beta. The requirements will be lowered in the future.
See the examples directory for complete and runnable examples.
using System;
using System.Collections.Generic;
using System.Text.Json;
using Courier;
using Courier.Models;
using Courier.Models.Send;
// Configured using the COURIER_API_KEY and COURIER_BASE_URL environment variables
CourierClient client = new();
SendMessageParams parameters = new()
{
Message = new()
{
To = new(new UserRecipient() { UserID = "your_user_id" }),
Template = "your_template",
Data = new Dictionary<string, JsonElement>()
{
{ "foo", JsonSerializer.SerializeToElement("bar") }
},
},
};
var response = await client.Send.Message(parameters);
Console.WriteLine(response);Configure the client using environment variables:
using Courier;
// Configured using the COURIER_API_KEY and COURIER_BASE_URL environment variables
CourierClient client = new();Or manually:
using Courier;
CourierClient client = new() { APIKey = "My API Key" };Or using a combination of the two approaches.
See this table for the available options:
| Property | Environment variable | Required | Default value |
|---|---|---|---|
APIKey |
COURIER_API_KEY |
true | - |
BaseUrl |
COURIER_BASE_URL |
true | "https://api.courier.com" |
To send a request to the Courier API, build an instance of some Params class and pass it to the corresponding client method. When the response is received, it will be deserialized into an instance of a C# class.
For example, client.Send.Message should be called with an instance of SendMessageParams, and it will return an instance of Task<SendMessageResponse>.
The SDK throws custom unchecked exception types:
CourierApiException: Base class for API errors. See this table for which exception subclass is thrown for each HTTP status code:
| Status | Exception |
|---|---|
| 400 | CourierBadRequestException |
| 401 | CourierUnauthorizedException |
| 403 | CourierForbiddenException |
| 404 | CourierNotFoundException |
| 422 | CourierUnprocessableEntityException |
| 429 | CourierRateLimitException |
| 5xx | Courier5xxException |
| others | CourierUnexpectedStatusCodeException |
Additionally, all 4xx errors inherit from Courier4xxException.
false
-
CourierIOException: I/O networking errors. -
CourierInvalidDataException: Failure to interpret successfully parsed data. For example, when accessing a property that's supposed to be required, but the API unexpectedly omitted it from the response. -
CourierException: Base class for all exceptions.
This package generally follows SemVer conventions, though certain backwards-incompatible changes may be released as minor versions:
- Changes to library internals which are technically public but not intended or documented for external use. (Please open a GitHub issue to let us know if you are relying on such internals.)
- Changes that we do not expect to impact the vast majority of users in practice.
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
We are keen for your feedback; please open an issue with questions, bugs, or suggestions.