Quick Start

How to get started with the API.

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Install the library

The best way to interact with our API is to use one of our official libraries:

# Install via NPM
npm install --save connit-sdk

Make your first request

To make your first request, send an authenticated request to the device configuration endpoint. This will return the system configuration profile for the device.

Fetch Device Configuration

POST https://tms.subsidian.net/api/v1/emv/parameter-download?serialNumber={serial-number}

Creates a new pet.

Request Body

Name
Type
Description

name*

string

The name of the pet

owner_id

string

The id of the user who owns the pet

species

string

The species of the pet

breed

string

The breed of the pet

Take a look at how you might call this method using our official libraries, or via curl:

Last updated

Was this helpful?