Errors
HTTP error response status codes indicate that a request has failed due to a client or server error.
Content
400: BAD_REQUEST
Message:
Invalid request body. Please check the schema and try again.
Description: The request body does not match the expected schema. Verify the structure and required fields.
*** is not allowed.
Description: The specified field is not permitted in the request. Remove or correct the field.
The required parameter *** is missing. Please check your request data and try again.
Description: A mandatory parameter is missing in the request. Ensure all required fields are provided.
Invalid number format - <Error Message>
Description: A numeric field contains an invalid format. Provide a valid numeric value.
The requested resource was found, but a required field is missing. Please review your request data.
Description: The resource exists to update, but a necessary field in the request is missing or incomplete.
401: UNAUTHORIZED
Message:
Authentication failed. Please check your credentials and try again.
Description: Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.
403: ACCESS_FORBIDDEN
Message:
Access denied. You don't have permission to perform this operation.
Description: The client does not have access rights to the content; that is, it is unauthorized, so the server is refusing to give the requested resource. Unlike 401 Unauthorized
, the client's identity is known to the server.
404: RESOURCE_NOT_FOUND
Message:
*** Not Found
Description:
The requested resource could not be found. The identifier may be incorrect or it may have been deleted.
405: METHOD_NOT_ALLOWED
Message:
The request method *** is not supported.
Description:
The HTTP method used is not supported for this endpoint. Please check API documentation for allowed methods.
409: RESOURCE_CONFLICT
Message:
Duplicated resource with same key exist. Please check your request data and try again.
Description:
This response is returned when the request is in conflict with the server’s current state. Verify that no duplicate data exists based on the unique composite code.
500: INTERNAL_SERVER_ERROR
Message:
An unexpected error occurred. <Error Message>
Description:
The server has encountered a situation it does not know how to handle. Please try again later or contact support if the issue persists.
503: SERVICE_UNAVAILABLE
Message:
The service is temporarily unavailable. Please try again later.
Description:
The request could not be processed because the underlying service is currently unavailable. This may be due to maintenance, downtime, or connectivity issues. Please try again later.