REST API
Authentication
To use our REST API, you will need a secret API key. If the API is enabled for your account, you will find this in the general settings. You can only copy the API key once before it is hidden. You will need to update the API key if you lose access to it.
To authenticate your requests you will need to set a X-Api-Key
 header with your API key as value.
If authorization is unsuccessful your request will fail.
Authentication errors
{
"status": "error",
"error": "invalid_api_key"
}
HTTP Code | Error | Meaning |
---|---|---|
401 |
| The API key provided was not found / no API key was provided. |
401 |
| The team's subscription has now expired. |
401 |
| The team's subscription does not include API access. |
401 |
| The teams's access has been restricted due to unauthorized usage. |