Authentication Errors
Authentication errors occur when you provide an invalid API Key, do not provide an API Key at all or try to access resources that do not belong to your account. Note that resources that do belong to your account, but have not been created via our API, are not accessible.
Error responses
Description
An API Key was not provided
Details
- HTTP Status: 401
- Mime type: application/json
- Message: You must provide a valid API Key
Code Example
{
"status": 401,
"message": "You must provide a valid API Key"
}
Description
The API Key could not be verified. This is either because the key has been revoked or is invalid.
Details
- HTTP Status: 401
- Mime type: application/json
- Message: The API Key could not be verified.
Code Example
{
"status": 401,
"message": "The API Key could not be verified."
}
Description
You tried to access a resource which does not belong to you.
Details
- HTTP Status: 403
- Mime type: application/json
- Message: You are not authorized to view or modify this resource
Code Example
{
"status": 403,
"message": "You are not authorized to view or modify this resource"
}