Skip to main content

Common Error Patterns

These are the most common response codes across the exposed API surface:

  • 200 OK
  • 201 Created
  • 204 No Content
  • 400 Bad Request
  • 401 Unauthorized
  • 403 Forbidden
  • 404 Not Found
  • 405 Method Not Allowed

Typical meanings:

  • 400: validation failure
  • 401: missing or invalid authentication, or a public auth flow failure
  • 403: authenticated but not allowed to access or modify the target object
  • 404: object not found, or object does not belong to the caller
  • 405: method not supported by the endpoint