The API follows standard HTTP status codes to indicate the success or failure of a request. In case of an error, additional information may be provided in the message field of the response body.

status codes:

HTTP Status CodeDescription
201OK: Successful request
400Bed request: Malformed syntax or invalid parameters
401Unauthorized: Authentication failure
403Forbidden: Access to the requested resource is forbidden
404Not Found: Requested resource not found
429Too Many Requests: Rate limit exceeded
5XXInternal Error in Justt Services

Get data response

{  
  "status": "200",
  "message":"success",
  "data" : <{}>
}

Create data response

{  
  "status": "201",
  "message":"success",
  "id" : "<id>"
}