cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/verify \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "journeyId": "uniqueJourneyIdentifier" }'
{ "journeyId": "<string>", "status": "verificationComplete", "identitySubject": { "type": "person", "fullName": "Max Mustermann", "nameStructure": { "firstName": "Max", "lastName": "Mustermann", "nativeFullName": "Max Mustermann" }, "gender": "M", "nationality": "DE", "dob": "1990/01/01", "addressSingleLine": "123 Main St, City, Country", "email": "max.mustermann@example.com", "mobileNumber": "+1234567890" }, "authoritativeData": { "identityDocument": { "type": "passport", "idNumber": "123456789", "issuingCountry": "DE", "expeditor": "BH Neunkirchen", "expirationDate": "2030/01/01", "verificationChannel": "optical" } }, "proofOfWork": { "type": "image", "titleOfProof": "IDFront", "timestampOfProof": "2024/08/01T10:00:00Z" }, "auditTrail": { "workId": "abc123", "workStatus": "PASS", "workStartTst": "2024/08/01T10:00:00Z", "workEndTst": "2024/08/01T10:01:00Z", "workResult": "Verification successful" }, "fraudAlerts": { "fraudAlertDetail": [ {} ], "aggregateFraudAlertScore": 0 }, "croppedImages": { "front": "<string>", "portrait": "<string>", "signature": "<string>", "back": "<string>", "selfie": "<string>" } }
Document Verification Verify Service API Documentation
/verify
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully verified documents.
The response is of type object.
object