Error Handling
Error Handling
Errors follow standard HTTP status codes:
Status Code
Type
Description
400
Bad Request
Invalid input / request
401
Unauthorized
Missing or invalid credentials
403
Forbidden
Insufficient permissions / Session Expired
404
Not Found
Resource not found
500
Internal Server Error
Server side error
Example Error Response:
{
"code" : 400
"error": "Invalid request parameters"
}
Last updated