Account API
Status Codes
The Account API returns errors as application/problem+json with the following structure:
json
{
"status": 401,
"title": "Unauthorized",
"detail": "Missing consumer identity"
}Error Codes
| Status Code | Description |
|---|---|
| 400 | Validation Error — The request body failed validation. The detail field describes which field is invalid. |
| 401 | Unauthorized — The request is missing a valid consumer identity. Ensure a valid API key is provided. |
| 404 | Not Found — No account could be found matching the authenticated identity. |
| 409 | Conflict — The requested operation conflicts with existing state (e.g., a key with the same name already exists). |
| 500 | Internal Server Error — An unexpected error occurred. Please retry the request. If the problem persists, contact support. |