Error Responses
Non 200 OK HTTP Error responses will be structured as follows:
Field Name | Field Type | Field Description |
---|---|---|
status | number | Mirrors the HTTP status code that appears in the response header. Note that this field will not be present if the error was generated by the API Gateway rather than SpotOn's code. |
message | string | The error message |
Example Error Response:
{
"status": 404,
"message": "Location not found"
}
Updated over 2 years ago