Error Codes

In case of something goes wrong, like the server did not respond, or the request body was incorrect or authentication could not happen, the Fyre server send errors response in a standard format. The error response contains three fields: message , code, success, and error. Sample error response body:

{
  message: 'The user has not participated in the events yet',
  code: 4007,
  success: false,
  error: true
}

Exact error can be idenfied by Error Codes contains in the code field of error response body. Below are the list of available error codes:

Last updated