INVALID_ACCESS_TOKEN
http code 400
{
"error_category": "INVALID_INPUT",
"error_code": "INVALID_ACCESS_TOKEN",
"error_message": "Could not find matching access token",
"display_message": null
}
Common causes
- Access tokens are in the format:
access-<environment>-<identifier>
- This error can happen when the
access_token
you provided is invalid or pertains to a different API environment
Troubleshooting steps
- Make sure you are not using a token created in one environment in a different environment (for example, using a Sandbox token in the Development environment).
- Ensure that the
client_id
,secret
, andaccess_token
are all associated with the same Deck developer account.
Updated 5 months ago