Standard HTTP Status Codes#
| Status Code | Meaning | Common Causes |
|---|
| 200 | Success | Request completed successfully |
| 400 | Bad Request | Invalid request format, missing required fields |
| 401 | Unauthorized | Invalid or expired access token |
| 403 | Forbidden | Insufficient permissions for the requested resource |
| 404 | Not Found | Resource does not exist |
| 500 | Internal Server Error | Server-side error |
{
"statusCode": 401,
"message": "Unauthorized",
"error": "Invalid or expired token",
"timestamp": "2024-03-18T10:30:00.000Z",
"path": "/v3/users/list",
"requestId": "abc123-def456-ghi789"
}
Handling Common Errors#
401 Unauthorized - Token Expired#
400 Bad Request - Validation Errors#
403 Forbidden - Insufficient Permissions#
Retry Logic for 5xx Errors#
Modified at 2026-04-13 06:15:41