Authentication
Last updated
Was this helpful?
Last updated
Was this helpful?
In order to work with the API you will need an access token. You can obtain an access token by creating a client secret
and client id
through the API tokens UI in Tracket.
You can find the API tokens by navigating to Preferences
in the top right corner of Tracket and then selecting the dropdown item API tokens
.
After creating a new API token you will be presented with 2 fields: client secret
, client id
. You will need both to fetch an access token with the following command:
This will return a json object with an access_token
.
This token is valid for 1 hour and you will need to fetch a new bearer token with your client secret, client id and account id to get a new one.
You can now query our API with the authorization header Bearer YOUR_ACCESS_TOKEN
.