Skip to content

Error responses

When auth fails:

{
"status": 2000,
"message": "Unauthorized",
"meta": "warning"
}

With DEBUG=true in environment, an extra field may appear:

{
"status": 2000,
"message": "Unauthorized",
"meta": "warning",
"detail": ""
}

Non-matching paths:

{
"status": 404,
"message": "Not Found"
}

{
"status": 1001,
"message": "Internal Server Error"
}