The official Seats.io library, supporting .NET 6 and newer.
From the command line:
nuget install SeatsioDotNet
From Package Manager:
PM> Install-Package SeatsioDotNet
Using the dotnet command:
dotnet add package SeatsioDotNet
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "SeatsioDotNet".
- Install the package.
This is the homepage of our NuGet package:
https://www.nuget.org/packages/SeatsioDotNet/
seatsio-dotnet follows semver since v70.2.0.
To use this library, you'll need to create a SeatsioClient
:
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
...
You can find your workspace secret key in the settings section of the workspace.
The region should correspond to the region of your account:
Region.EU()
: EuropeRegion.NA()
: North-AmericaRegion.SA()
: South-AmericaRegion.OC()
: Oceania
If you're unsure about your region, have a look at your company settings page.
using SeatsioDotNet;
using SeatsioDotNet.Charts;
using SeatsioDotNet.Events;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
var chart = await client.Charts.CreateAsync();
var evnt = await client.Events.CreateAsync(chart.Key);
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
await client.Events.BookAsync(<EVENT KEY>, new [] { "A-1", "A-2"});
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
await client.Events.ReleaseAsync(<EVENT KEY>, new [] { "A-1", "A-2"});
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
await client.Events.BookAsync(<EVENT KEY>, new [] { "A-1", "A-2"}, <A HOLD TOKEN>);
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
await client.Events.ChangeObjectStatusAsync(""<EVENT KEY>"", new [] { "A-1", "A-2"}, "unavailable");
Retrieving the published version of a chart (i.e. the actual drawing, containing the venue type, categories etc.)
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
var drawing = await client.Charts.RetrievePublishedVersionAsync(<CHART KEY>);
Console.WriteLine(drawing.VenueType);
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
var objectInfos = await Client.Events.RetrieveObjectInfosAsync(evnt.Key, new string[] {"A-1", "A-2"});
Console.WriteLine(objectInfos["A-1"].CategoryKey);
Console.WriteLine(objectInfos["A-1"].CategoryLabel);
Console.WriteLine(objectInfos["A-1"].Status);
Console.WriteLine(objectInfos["A-2"].CategoryKey);
Console.WriteLine(objectInfos["A-2"].CategoryLabel);
Console.WriteLine(objectInfos["A-2"].Status);
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
IEnumerable<Category> categoryList = await client.Charts.ListCategoriesAsync(<chart key>);
foreach (var category in categoryList)
{
Console.Write(category.Label);
}
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
await Client.Charts.UpdateCategoryAsync(chart.Key, 1, new CategoryUpdateParams("Updated label", "#bbbbbb", true));```
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>");
var charts = await client.Charts.ListAllAsync();
foreach (var chart in charts)
{
Console.WriteLine("Chart " + chart.Key);
}
Note: listAllAsync()
returns an IAsyncEnumerable`, which under the hood calls the seats.io API to fetch charts page by page. So multiple API calls may be done underneath to fetch all charts.
E.g. to show charts in a paginated list on a dashboard.
// ... user initially opens the screen ...
var firstPage = await client.Charts.ListFirstPageAsync();
foreach (var chart in firstPage.Items)
{
Console.WriteLine("Chart " + chart.Key);
}
// ... user clicks on 'next page' button ...
var nextPage = await client.Charts.ListPageAfterAsync(firstPage.NextPageStartsAfter);
foreach (var chart in nextPage.Items)
{
Console.WriteLine("Chart " + chart.Key);
}
// ... user clicks on 'previous page' button ...
var previousPage = await client.Charts.ListPageBeforeAsync(nextPage.PreviousPageEndsBefore);
foreach (var chart in previousPage.Items)
{
Console.WriteLine("Chart " + chart.Key);
}
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<COMPANY ADMIN KEY>");
await client.Workspaces.CreateAsync("a workspace");
using SeatsioDotNet;
var client = new SeatsioClient(Region.EU(), "<COMPANY ADMIN KEY>", "<WORKSPACE PUBLIC KEY>"); // workspace public key can be found on https://app.seats.io/workspace-settings
var chart = await client.Charts.CreateAsync();
var evnt = await client.Events.CreateAsync(chart.Key);
When an API call results in a 4xx or 5xx error (e.g. when a chart could not be found), a SeatsioException is thrown.
This exception contains a message string describing what went wrong, and also two other properties:
Errors
: a list of errors that the server returned. In most cases, this list will contain only one element.RequestId
: the identifier of the request you made. Please mention this to us when you have questions, as it will make debugging easier.
This library supports exponential backoff.
When you send too many concurrent requests, the server returns an error 429 - Too Many Requests
. The client reacts to this by waiting for a while, and then retrying the request.
If the request still fails with an error 429
, it waits a little longer, and try again. By default this happens 5 times, before giving up (after approximately 15 seconds).
We throw a RateLimitExceededException
(which is a subclass of SeatsioException
) when exponential backoff eventually fails.
To change the maximum number of retries, create the SeatsioClient
as follows:
var client = new SeatsioClient(Region.EU(), "<WORKSPACE SECRET KEY>").SetMaxRetries(3);
Passing in 0 disables exponential backoff completely. In that case, the client will never retry a failed request.
You can pass in a custom HttpClient
(e.g. one that was created by a IHttpClientFactory
):
var httpClient = factory.CreateClient();
new SeatsioClient(Region.EU(), "<secret key>", httpClient);
To enable exponential backoff in case of rate limit exceeded errors, you'll need to pass in the SeatsioMessageHandler
when creating the HTTP client:
var httpClient = new HttpClient(new SeatsioMessageHandler(maxRetries));
Alternatively, you can implement your own retry logic. There's an example in CustomHttpClientTest.cs.