Menu

Response

The Logyx REST API uses a default response format for all endpoints.

{
    "code": 200,
    "message": "We have succesfully processed the request.",
    "data": {},
    "links": {},
    "errors": []
}
Key Type Description
code Integer An HTTP status code .
message String The description for the response.
data Dictionary or list The response objects.
links Dictionary Relevant links to the response.
errors List A list of errors generated during model processing.
Menu