Error Response Format
- 400 [Bad Request]
- 500 [Internal Server Error]
Error Categories
1. Malformed JSON/Invalid Headers
Invalid request format or header issues.2. Object Integrity
Errors related to object existence or access.3. Missing Required Fields
When mandatory fields are not provided.4. Bland Values
Empty or blank field values.5. Length Violation
Field length constraints violations.6. Invalid Format
Incorrect data format submissions.7. Business Logic
Business rule violations and constraints.HTTP Status Codes
-
400 Bad Request: Used for all validation errors, malformed requests, and business logic violations. This includes invalid input data, missing required fields, format violations, and business rule conflicts. -
401 Unauthorized: Returned when authentication fails or is missing. This typically occurs when API keys are invalid, expired, or not provided. -
404 Not Found: Returned when the requested resource does not exist. This could be attempting to access an invalid endpoint or a resource that has been deleted. -
500 Internal Server Error: Used for unexpected server-side errors. This indicates something went wrong on our servers and the request could not be completed. These errors should be reported to our support team.

