Comment on page
Error Codes
Error codes that can be found on YVOS
Youverify API errors are usually returned in this format with the HTTP status codes.
CODES | ERROR MESSAGES | WHAT IT MEANS |
422 | {
"message": "422 Unprocessable Entity",
"errors": {
"report_type": [ "The report type field is required." ]
},
"status_code": 422
} | Unprocessible Entity-Validity Error. The sent an invalid payload. IT does not meet validation rule. |
400 | {
"message": "400 Bad Request",
"status_code": 400
} | Bad Request - The client has sent a bad request, usually a wrong ID format. |
400 | {
"message": "You are low on credit",
"status_code": 400
} | Insufficient fund-The client does not enough funds in their account. |
500 | {
"message": "The server could not handle the request ",
"status_code": 500
} | Internal Server Error - The server encountered an error while processing the request. |
404 | {
"message": "404 Not Found",
"status_code": 404
} | Not Found - The ID number doesn’t exist. |
401 | {
"message": "Token does not exist",
"status_code": 401
} | Token does not exist. Token was not properly referenced. |
403 | {
"message": "Insufficient Fund",
"status_code": 403
} | Insufficient fund-The client does not enough funds in their account. |
503 | {
"message": "Service Unavailable",
"status_code": 503
} | Connection error-The service is currently unavailable. Try again later. |
504 | {
"message": "Unable to Connect to FRSC service provider",
"status_code": 504
} | Service downtime-The service is currently unavailable. Try again later. |
Last modified 1yr ago