Skip to content
Get started

Colleqtive C# API Library

Colleqtive C# API Library

The Colleqtive C# SDK provides convenient access to the Colleqtive REST API from applications written in C#.

Installation

Install the package from NuGet:

dotnet add package Colleqtive.Sdk

Requirements

This library requires .NET Standard 2.0 or later.

Usage

See the examples directory for complete and runnable examples.

ColleqtiveClient client = new();

StoreListStoresParams parameters = new();

var response = await client.Stores.ListStores(parameters);

Console.WriteLine(response);