API Documentation
Error responses
Overview
When an API request fails, the response will contain details about what went wrong. All error responses follow a consistent format to help you debug and handle errors appropriately.
Error Response Structure
Field | Type | Description |
---|---|---|
message | string | A human-readable description of the error |
code | string | A unique identifier for the type of error |
details | object or array | Additional context about the error, such as invalid fields or constraints. Each endpoint may include specific error details in their documentation |
causations | array of error | Optional array of error objects following the same structure as the parent error. Only present when there’s a meaningful chain of related errors to expose |
HTTP Status Codes
Name | Status Code | Description |
---|---|---|
Bad Request | 400 | The request was malformed or contains invalid parameters. |
Unauthorized | 401 | Authentication is required or the provided credentials are invalid. |
Forbidden | 403 | The authenticated user doesn’t have permission to access the requested resource. |
Not Found | 404 | The requested resource doesn’t exist. |
Internal Server Error | 500 | Something went wrong on our end. |