Every request is validated and authenticated by the API-key header. You can view your API-Key when you are logged into the web-app in https://live.hellotracks.com, open API & Integrations page under More in the main menu. Make sure to enable APIs in the API section.

curl -X POST https://hellotracks.com/api/$endpointname \\
    --header 'API-Key: ABCDEF.ABCDEFGHIJKLMNOPQRSTUVWXYZ123456' -d \\
'
    {
        "data":{
          ...
        }
    }
'
usrrequired
string

The usr attribute must be set to the username of the requester. This should generally be the username of an administrator login. It is good practice to create a separate user only used for api requests.

keyrequired
string

Every request needs to include your API-KEY in key. The secret API-KEY is unique and identifies your client accessing our APIs. You can find the API-KEY when you are logged into the web app https://live.hellotracks.com > Integrations page > API section.