Responses
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 Code | Description |
---|---|
201 | OK: Successful request |
400 | Bed request: Malformed syntax or invalid parameters |
401 | Unauthorized: Authentication failure |
403 | Forbidden: Access to the requested resource is forbidden |
404 | Not Found: Requested resource not found |
429 | Too Many Requests: Rate limit exceeded |
5XX | Internal Error in Justt Services |
Get data response
{
"status": "200",
"message":"success",
"data" : <{}>
}
Create data response
{
"status": "201",
"message":"success",
"id" : "<id>"
}
Updated 12 months ago