Getting started
To access a private token you’ll need to open the user form from the menu, and open the API fieldset

Authentication
All requests to the API must be authenticated with an access token in one of two ways:
1. In the URL as the private_token parameter:
https://api.sengerio.com/v1/...?private_token=f7479feff1ad0b344fe19fay75c2eadc98ee086f5d9696c6a26817b071d176546dc4691fc777f2ab147861429589bbe60f3df0295s5432452a4bec5172b6f217ad
2. In the HTTP Authorization header:
Authorization: "Bearer f7479feff1ad0b344fe19fay75c2eadc98ee086f5d9696c6a26817b071d176546dc4691fc777f2ab147861429589bbe60f3df0295s5432452a4bec5172b6f217ad"
Language
In all the requests to the API you can add a language parameter in one of two ways:
1. In the URL as the language parameter:
https://api.sengerio.com/v1/...?language=en-US
2. In the HTTP Accept-Language header:
Accept-Language: "en-US"
Endpoints
All API requests are made to https://api.sengerio.com/ and all requests are served over HTTPS. The current version is v1.
Formats
The API only supports form urlencoded data at present. In the request header:
Content-Type: "application/x-www-form-urlencoded"