Errors

Due to legacy reasons, there are 2 type of error responses:

Message

The message will be in the requester default language. For public api, please request with HTTP_ACCEPT_LANGUAGE header set to your preferred language.

{
  "message": "missing parameters"
}

Code

Code with the following structure will be returned

{ “errors”: {“object”: [“errors list”]} }

{
  "errors": {"user":["not_enough_fund"]}
}

Last updated