Error Reference
UNAUTHENTICATED
Authentication credentials are missing, invalid, or cannot be verified.
This error means the API could not authenticate your request.
Typical causes
- Missing
Authorizationheader - Invalid bearer token
- Token format is malformed
How to fix
- Send
Authorization: Bearer <token>on the request. - Verify the token is current and copied correctly.
- Retry with a newly issued token if needed.
Example
{
"errors": [
{
"message": "Invalid token",
"code": "UNAUTHENTICATED",
"documentation": "https://developers.rad.live/docs/errors/unauthenticated"
}
]
}