Codes
SUCCESS CODE
HTTP Status
Description
Detail
200 OK
Successfully processed request.
The server successfully processed the request, and the response contains the requested data or confirmation of the action performed.
ERROR CODES
Error responses contain more detail about the error in the response body, in the "code" and "message"properties.
HTTP Status
Code
Message
Description
400 Bad Request
invalid_request
The request format is incorrect.
The request format or syntax is invalid, which prevents the server from understanding and processing it. Verify and correct the request structure.
401 Unauthorized
unauthorized
Authentication failed or token expired.
The authentication credentials provided are either invalid or have expired. Ensure that the token is correct and still valid.
404 Not Found
not_found
Resource not found.
The requested resource does not exist on the server. Confirm that the URL is correct and that the resource is available.
429 Too Many Requests
rate_limited
Rate limit exceeded.
The number of requests made in a given period exceeds the allowed rate limit. Wait before making further requests or optimize your request frequency.
Last updated