API Response
200 Success Response
Http status: 200
{
data: {},
error: 0
}
422 Logic Error Response
Http status: 422
{
"errors": {
"fields": {
[field_name: string]: string[]
},
"form": string[]
}
}
Example Response Error:
{
"errors": {
"fields": {
"foo": ["INVALID_NUMBER"]
},
"form": ["SOME_ERROR"]
}
}
fields
represents the error related to a specific field sent in the request payload.
form
represents a logic error
401 Unauthorized Error Response
Http status: 401
You'll need to authenticate to get a valid new access token.