When submitting requests that require authentication, you'll need to ensure that you provide appropriate credentials with any requests.
This API requires that you send your token/secret as a bearer token in the Authorization header. For example:
Authorization: Bearer {token}
Any of the following errors may be raised on any request that requires authentication.
| Details | HTTP status |
|---|---|
|
The API token provided was not valid (it may not exist or have expired) |
403 Forbidden |
|
No API token was provided in the Authorization header. Ensure a token is provided prefixed with Bearer |
401 Unauthorized |
|
The scope required for this endpoint has not been granted to the authenticating identity |
403 Forbidden |