Retrieve Status of Rapyd Verify Application
Retrieve the status of an application for verification of identity.
application
ID of the application. String starting with app_.
/v1/verify/applications/status/:application
Retrieve Application Status
curl -X get 'https://sandboxapi.rapyd.net/v1/verify/applications/status/app_0d460e42-d7c1-4c68-b5f0-744bdafd0402' \ -H 'access_key: your-access-key-here' \ -H 'Content-Type: application/json' \ -H 'salt: your-random-string-here' \ -H 'signature: your-calculated-signature-here' \ -H 'timestamp: your-unix-timestamp-here' \ --data-raw ''
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "0211315e-7f0b-4ca1-9b63-1f373ae2c085" }, "data": { "status": "NEW" } }
Bad Request - Application Not Found
curl -X get 'https://sandboxapi.rapyd.net/v1/verify/applications/status/app_0d460e42d7c14c68b5f0744bdafd0402' \ -H 'access_key: your-access-key-here' \ -H 'Content-Type: application/json' \ -H 'salt: your-random-string-here' \ -H 'signature: your-calculated-signature-here' \ -H 'timestamp: your-unix-timestamp-here' \ --data-raw ''
{ "status": { "error_code": "ERROR_APPLICATION_NOT_FOUND", "status": "ERROR", "message": "The request attempted an operation on an application, but the application was not found. The request was rejected. Corrective action: Use the ID of a valid application.", "response_code": "ERROR_APPLICATION_NOT_FOUND", "operation_id": "9a439bf7-abc0-4213-bd90-73aaed1ce654" } }