Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeMidnight
{
  "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
languagejs
themeMidnight
{
  "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
languagejs
themeMidnight
{
  "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
languagejs
themeMidnight
{
  "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
languagejs
themeMidnight
{
    "message": "Unauthorized"
}

Error codeĀ 403 Forbidden

...