Possible Errors
Last updated
Last updated
Fumiwo API errors are usually returned in this format with the HTTP status codes.
CODES
ERROR MESSAGES
WHAT IT MEANS
400
{
"success": false,
"statusCode": 404,
"message": "Bad Request",
"name": "BadRequestError",
"data": {}
}
Validation error: You sent in data that failed validation
402
{
"success": false,
"statusCode": 402,
"message": "Payment information required",
"name": "PaymentRequiredError",
"data": {}
}
You currently are not subscribed to a plan or have uncleared invoice(s)
401
{
"success": false,
"statusCode": 401,
"message": "Permission denied",
"name": "UnauthorizedError",
"data": {}
}
Forbidden error -occurs when authorization is incorrect
503
{
"success": false,
"statusCode": 503,
"message": "Third-party provider not reacheable",
"name": "Error",
"data": {}
}
Service Unavailable:The service is currently unavailable from the third party.
500
{
"success": false,
"statusCode": 500,
"message": "Internal Server Error",
"name": "Error",
"data": {}
}
Service Unavailable:The service is currently unavailable.