Skip to main content

authorization_failed

Error cause indicating credentials were authenticated successfully but lack permission to perform the requested operation.

What this means

Your API key is valid, but it does not allow access to the requested resource or operation. Use a key with the required permissions and access to the resource identified in your request.

Similarly, if you attempt to access an endpoint that requires permissions your API key does not have, you will encounter this error. It returns HTTP 403 and requires a key with the necessary permissions or help from support.

Example error response

{
"error": {
"type": "bad_request",
"cause": "authorization_failed",
"code": "1403",
"message": "authorization failed",
"detail": "Your API key does not have permission to access this resource.",
"fix_code": "change_request_parameters",
"url": "https://studio.inttegro.com/e/1403"
}
}