Getting Started
Error Handling
8 min
response codes we use the following status code in the response depending on the success or failure status code description 200 â
success/ok request success and the response will return with the requested data 400 â bad request the request returned an error 401 â unauthorized the credentials are not valid 403 â forbidden you don't have permission to perform the request 404 â not found the requested resource can't be found 500 â internal server error web server is experiencing problems, but it can't pinpoint the specific error or its root cause troubleshoot here is our recommendation in terms of handling errors 400 bad request error { "status" 400, "error code" 3, "message" "bad request", } cause cause the bad request error occurs when the user sends an incorrect or invalid data like invalid password or invald data 400 userdoesnotexisterror { "status" 400, "error code" 21, "message" "user does not exist ", } cause cause the user doesnot exist error occurs if user try to login with incorrect credentials 400 airwaybillalreadysubscribederror { "status" 400, "error code" 30, "message" "air waybill is already subscribed with same awb number", } cause cause system shows error if user try to repost the already existing air waybill number 400 containeralreadysubscribederror { "status" 400, "error code" 10, "message" "container is already subscribed with same mbl number", } cause cause system shows error if user try to repost the already existing container number and mbl number 500 internal server error { "status" 500, "error code" 1, "message" "internal server error", } cause cause web server is experiencing problems, but it can't pinpoint the specific error or its root cause 500 temporarysubscriptionunavailableerror { "status" 500, "error code" 11, "message" "temporarily subscription unavailable for this carrier", } cause cause it's not you, it's us this error means we have suspended the subscription for the particular carrier temporarily âī¸ need some help? https //app archbee io/public/preview z2kbkofdy1bhjsalnxcpa#tm need some help if you encounter a problem or require assistance, please contact our support team with details regarding your request at support\@rippey ai a representative will connect with you soon đ