...
Code Block |
---|
|
{
"message": "child \"start\" fails because [\"start\" must be a valid ISO 8601 date]"
} |
Invalid
...
If you provide a cadence value that is not 15, you will receive the following message in addition to the 400 error code:
Code Block |
---|
|
{
"message": "child \"cadence\" fails because [\"cadence\" must be one of [15]]"
} |
Invalid GUID
If you provide an invalid GUID, you will receive the following message in addition to the 400 error code:
...
Code Block |
---|
|
{
"error_description": "The access token is missing",
"error": "invalid_request"
} |
Invalid token
If you provide an invalid or expired bearer access token, you will receive the following message in addition to the 401 error code:
Code Block |
---|
|
{
"error_description": "The access token is invalid or has expired",
"error": "invalid_token"
} |
Missing scope
If your client credentials contain the required scope, but your bearer access token does not, you will receive the following message in addition to the 401 error code:
Code Block |
---|
|
{
"message": "Unauthorized"
} |
Error codeĀ 403 Forbidden
...