Using our SDK (.NET)

Microsoft .NET

To make it quick and easy for you to build your Upodi integration, we maintain a Software Development Kit (SDK) for .NET.

Upodi SDK 5.0 for .NET Core Framework NuGet

Upodi SDK Core for C# and .NET developers enables easy to use integration and programming core applications.

# Install our NuGet package:
install-package Upodi.Sdk.5

Then implement the library into your code:

using Upodi.SDK;
using Upodi.SDK.Objects;

Your first request

UpodiClient upodi = new Upodi.SDK.UpodiClient("UpodiAPIKey");

Now you can test whether you have access by making your first API request. You can start by listing all your customers even though you might not have any yet:

var customers = upodi.Customers.List();
curl -X GET https://api.upodi.io/v2/customers/
-H 'Accept: application/json'
-H "Authorization: Bearer {UpodiAPIKey};"

Next up let's add your first customer.