Skip to main content

SDK

Pliance offers a comprehensive SDK that makes it easy for delelopers to interact with our services. Packages are conviniently made available for popular languages. Please check our public GitHub repo for open source code and samples.

Install a Pliance library

Nuget

dotnet add package Pliance.NET-SDK

Connect to Pliance API

Our client handles the connection and the authentication to the Pliance servers.

import { ClientFactory, IPlianceClient } from '@pliance/pliance.js.sdk';

let factory = new ClientFactory('<SECRET>', '<CUSTOMER>', 'https://<CUSTOMER>.pliance.io/', null);
let client = factory.create('<USERNAME>', '<USERID>');