Skip to main content

HTTP Status Codes

Status CodeMeaningDescription
200OKRequest successful
201CreatedResource created successfully (CMS POST)
400Bad RequestInvalid request parameters or body
401UnauthorizedMissing or invalid authentication credentials
403ForbiddenInsufficient permissions for this operation
404Not FoundResource does not exist
429Too Many RequestsRate limit exceeded
500Internal Server ErrorServer-side error

Error Response Format

CDS Errors

{
  "detail": "Invalid Auth Credentials"
}

CMS Errors

{
  "error": {
    "code": "BAD_REQUEST_ERROR",
    "description": "Something Went Wrong"
  }
}

Common Error Scenarios

401 Unauthorized

400 Bad Request

404 Not Found

429 Too Many Requests