Skip to main content

Registration identifications

Pieter Reitsma avatar
Written by Pieter Reitsma
Updated over 2 years ago

This page explains how you can use the API to interact with the KYC Suite Mitek identification flow and also provides some examples of the identifications object.

Contents

Updates

19 August 2022 - Change in the API URL to send the invite, to start identification process with document upload and complete a Mitek identification.

8 July 2022 - Migration from the old Mitek API to the new Mitek API and structure of the response of the identification object will change.

Manual identification

Example with one identification:

  "identifications": {
"516e3c80-9938-11ec-ab2a-2d49907e8e41": {
"skip": false,
"processId": "011f73a0-994e-11ec-8df5-89d8a084a780",
"resolution": "accept",
"workflowId": "4e3fb1d5-07cd-11ec-9aaa-1f1062fa5bb8",
"manualIdentification": true
}
}

Example with multiple identifications having been performed:

"identifications": {
"516e3c80-9938-11ec-ab2a-2d49907e8e41": {
"manualIdentificationHistory": [
{
"skip": false,
"processId": "011f73a0-994e-11ec-8df5-89d8a084a780",
"resolution": "accept",
"manualIdentification": true,
"workflowId": "4e3fb1d5-07cd-11ec-9aaa-1f1062fa5bb8"
},
{
"skip": false,
"processId": "8e4fb550-994e-11ec-8df5-89d8a084a780",
"resolution": "reject",
"manualIdentification": true,
"workflowId": "4e3fb1d5-07cd-11ec-9aaa-1f1062fa5bb8"
}
],
"skip": false,
"processId": "9c17b160-994e-11ec-8df5-89d8a084a780",
"resolution": "accept",
"workflowId": "4e3fb1d5-07cd-11ec-9aaa-1f1062fa5bb8",
"manualIdentification": true
}
},

Mitek identification

Example after invite has been sent.

{
"516e3c80-9938-11ec-ab2a-2d49907e8e41": {
"mitekResults": {},
"mitekSubStatus": "InviteSent",
"mitekStatus": "InProgress",
"caseId": "c362b8ec-995c-44b2-aeec-a0d54e4b16d9",
"waitTime": "S",
"noMobileFlow": false
}
}

The invite can be sent programatically using the following endpoint:

URL: https://api.blanco.cloud/bcos/registrations/{registrationId}
METHOD: PUT

After 19 August 2022 the URL will change to:

https://api.blanco.cloud/bcos/registrations/{registrationId}/mitek/{partyId}

The old URL will be backwards compatible.

Option 1: Start the Mitek flow with documents

If you provide the documents as parameters, the Mitek identification process will start.

URL PARAMS: mitekPartyId, documentId1, documentId2, documentFormat

Option 2: Send identification invite

If you do not provide documents as parameters, an invite will be sent to email or sms.

URL PARAMS: mitekPartyId, emailLanguage

The invite requires a payload similar to this:

{
"deliveryMethod": "SMS", //EMAIL
"email": "<<email>>",
"firstName": "<<firstName>>",
"lang": "en-US", //nl-NL
"lastName": "<<lastName>>",
"mitekPartyId": "<<party-id>>",
"mobile": "<<mobile number>>",
"tenant_id": "<<tenant-id>>"
}

Mitek identification object details

Endpoint: GET https://api.blanco.cloud/bcos/registrations/{registrationId}

Response example:

 {
"status": "INCOMPLETE",
"createdAt": "2022-05-30T14:57:39.019Z",
"channelCreatedAt": "WEB_BACKEND#2022-05-30T14:57:39.019Z",
"assignee_id": null,
"createdBy": "eu-central-1_lEvpdJBUQ||9c1dd405-cd0f-41bb-b7d2-67e6c6c4c95d",
"channel": "WEB_BACKEND",
"documents": [],
"tenant_id": "xxxx",
"contracts": [],
"updatedAt": "2022-06-14T14:12:41.829Z",
"identifications": {
"{partyId}": {
"mitekResults": {
"result": "NEW_MITEK_RESPONSE_OBJECT",
"CaseParameters": {...}
},
"mitekSubStatus": "waitingForReview",
"mitekStatus": "Fraudulent",
"caseId": "c4cc767d-bf93-44cd-88ce-d7d2f5056246",
"manualIdentificationHistory": [
{}
],
"waitTime": "S",
"noMobileFlow": true
}
},
"_id": "{registrationId}",
"parties": [],
"type": "BUSINESS",
"nextStatus": [
"COMPLETE",
"REJECTED"
],
"survey": {},
"CDD": {},
"signing": {},
"agent_id": null
}

Inside the registration is the object identifications, within this object, there is a list of party id's which contain the object mitekResults.result.

{...
"identifications": {
"{partyId}": {
"mitekResults": {
"result": <<MITEK_RESPONSE_OBJECT>>,
},
...
}
...
}


This object mitekResults.result will contain the Mitek response. Most of the properties are inherited from the original response from Mitek but we have extended some of the fields:

  • faceComparison - optional property containing the result of biometric check, for the format definition see: Mitek Face Comparison

  • status - high level status used internally. Can have values: Authenticated or Fraudulent

  • referenceImages - Images submitted to Mitek by the user of the KYC Suite.

  • derivedImages - Cropped and portrait images derived from the Mitek response (only available for the Auto Flow).

Apart from the extended fields described above, the other properties are extended from:

Completing the Mitek identification process

The following can be used to complete the identification process and mark it either as "Rejected" or "Accepted".

URL: https://api.blanco.cloud/bcos/registrations/{registrationId}
URL PARAMS: rejectMitekPartyId, acceptMitekPartyId, expireAt, documentNumber
METHOD: PUT

The party-id should be filled in either in the rejectMitekPartyId or acceptMitekPartyId depending on the desired outcome. In the case of accepting the identification case, the fields expireAt and documentNumber should contain the values as they are filled for the identification document.

New URL as per 19 August 2022:

https://api.blanco.cloud/bcos/registrations/{registrationId}/mitek/{partyId}

Examples for Mitek results

Below are some examples of possible contents for the object mitekResults.

Manual (Agent) flow Approved

{
"customerReferenceId": "{caseId}",
"acceptance": {
"result": "ACCEPTED"
},
"requestId": "4d6a4dc2-a756-4479-99c2-a856b41456c6",
"acceptance": {
"result": " ACCEPTED"
},
"findings": {
"documentApproval": "APPROVED",
"details": {
"authenticity": {
"result": "AUTHENTIC"
},
"originality": {
"result": "ORIGINAL"
},
"validity": {
"result": "VALID"
}
}
},
"extractedData": {
"documentAttributes": {
"countryCodeOfIssuance": "USA",
"dateOfExpiry": "1965-08-28",
"dateOfIssuance": "1965-08-28",
"documentNumber": "90933633",
"documentType": "DRIVERS_LICENSE",
"documentSubType": "",
"issuingAuthority": "CALIFORNIA DMV",
"stateOrProvinceOfIssuance": "CA"
},
"personAttributes": {
"dateOfBirth": "1965-08-28",
"gender": "F",
"nationalityCode": "USA",
"personalGovernmentId": "",
"placeOfBirth": ""
},
"name": {
"firstSurname": "LORCA SANCHEZ",
"fullName": "JUANA LORCA SANCHEZ MENDOZA",
"givenNames": "JUANA",
"secondSurname": "MENDOZA",
"surname": "LORCA SANCHEZ MENDOZA"
},
"address": {
"parsedAddress": {
"addressLine1": "123 MAIN ST",
"addressLine2": "SAN DIEGO CA 92101",
"addressLine3": "",
"addressLine4": "",
"city": "SAN DIEGO",
"postalCode": "92101",
"stateOrProvince": "CA"
},
"unparsedAddress": {
"addressLine1": "123 MAIN ST",
"addressLine2": "SAN DIEGO CA 92101",
"addressLine3": "",
"addressLine4": ""
}
}
},
"faceComparison": {
"customerReferenceId": "75109418-0ee5-41db-8ef4-33e6ba90d1b1",
"requestId": "aac035de-4c54-433d-ad4e-d719abc064fd",
"approval": "APPROVED",
"findings": {
"faceComparisonApproval": "MATCH",
"faceLivenessApproval": "LIVE"
}
},
"referenceImages": [
{
"link": "{imageurl}",
"type": "doc0",
"path": "MITEK/968044e9-f772-4788-9004-a57e73f33ae2/doc0"
},
{
"link": "{imageurl}",
"type": "SF1",
"path": "MITEK/968044e9-f772-4788-9004-a57e73f33ae2/sf1"
}
],
"status": "Fraudulent"
},

Manual (Agent) flow Not approved

{
"customerReferenceId": "{caseId}",
"acceptance": {
"result": "ACCEPTED"
},
"requestId": "4d6a4dc2-a756-4479-99c2-a856b41456c6",
"extractedData": {
"personAttributes": {
"dateOfBirth": "1965-08-28",
"nationalityCode": "USA",
"placeOfBirth": "",
"gender": "F",
"personalGovernmentId": ""
},
"name": {
"fullName": "JUANA LORCA SANCHEZ MENDOZA",
"secondSurname": "MENDOZA",
"firstSurname": "LORCA SANCHEZ",
"surname": "LORCA SANCHEZ MENDOZA",
"givenNames": "JUANA"
},
"documentAttributes": {
"documentSubType": "",
"dateOfExpiry": "1965-08-28",
"issuingAuthority": "CALIFORNIA DMV",
"documentType": "DRIVERS_LICENSE",
"documentNumber": "90933633",
"stateOrProvinceOfIssuance": "CA",
"dateOfIssuance": "1965-08-28",
"countryCodeOfIssuance": "USA"
},
"address": {
"parsedAddress": {
"stateOrProvince": "CA",
"city": "SAN DIEGO",
"postalCode": "92101",
"addressLine1": "123 MAIN ST",
"addressLine2": "SAN DIEGO CA 92101",
"addressLine3": "",
"addressLine4": ""
},
"unparsedAddress": {
"addressLine1": "123 MAIN ST",
"addressLine2": "SAN DIEGO CA 92101",
"addressLine3": "",
"addressLine4": ""
}
}
},
"findings": {
"documentApproval": "NOT_APPROVED",
"details": {
"originality": {
"result": "NOT_ORIGINAL",
"reasons": [
"EVIDENCE_OF_FORGERY_BLACK_AND_WHITE_COPY",
"EVIDENCE_OF_FORGERY_DOCUMENT_STRUCTURE"
]
},
"authenticity": {
"result": "NOT_AUTHENTIC",
"reasons": [
"EVIDENCE_OF_FORGERY_BIODATA_FONTS",
"EVIDENCE_OF_FORGERY_MRZ_FONTS",
"EVIDENCE_OF_FORGERY_PHOTO_ZONE",
"EVIDENCE_OF_FORGERY_SIGNATURE"
]
},
"validity": {
"result": "NOT_VALID",
"reasons": [
"EVIDENCE_OF_FORGERY_DATA_COMPARISON",
"EVIDENCE_OF_FORGERY_MRZ_CHECKSUMS",
"EXPIRED_OR_INVALIDATED"
]
}
}
},
"referenceImages": [
{
"link": "{imageurl}",
"type": "doc0",
"path": "MITEK/968044e9-f772-4788-9004-a57e73f33ae2/doc0"
}
],
"status": "Fraudulent"
},

Manual (Agent) flow Rejected

{
"customerReferenceId": "{caseId}",
"acceptance": {
"result": "ACCEPTED"
},
"requestId": "4d6a4dc2-a756-4479-99c2-a856b41456c6",
"acceptance": {
"result": " REJECTED",
"reasons": [
"GLARE",
"INCOMPLETE_DOCUMENT",
"NOT_VISIBLE_FOUR_CORNERS",
"NOT_VISIBLE_SECURITY_FEATURES",
"OUT_OF_FOCUS",
"POOR_CONTRAST",
"POOR_EXPOSURE",
"UNCLASSIFIED_DOCUMENT",
"UNREADABLE_FIELD",
"UNSUPPORTED_LANGUAGE"
]
},
"referenceImages": [
{
"link": "{imageurl}",
"type": "doc0",
"path": "MITEK/968044e9-f772-4788-9004-a57e73f33ae2/doc0"
}
],
"status": "Fraudulent"
},

Auto flow Accepted

{
"referenceImages": [
{
"type": "doc0",
"link": "{imageUrl}",
"path": "MITEK/75be7b9f-fef9-413d-889a-94c4b2d6dbb7/doc0"
},
{
"type": "SF",
"link": "{imageUrl}",
"path": "MITEK/75be7b9f-fef9-413d-889a-94c4b2d6dbb7/SF"
}
],
"evidence": [
{
"images": [
{
"processingStatus": "Successful",
"derivedImages": {
"croppedPortrait": {
"data": null,
"imageId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8"
},
"croppedDocument": {
"data": null,
"imageId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8"
}
},
"processingReasons": {},
"imageId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"classification": {
"mdsid": "MDS.2.0.NLD..PP...01",
"imageType": "PassportPicturePage"
},
"extractedData": {
"name": {
"fullName": "JOHN DOE",
"surname": "DOE",
"dynamicProperties": {},
"givenNames": "JOHN"
},
"dateOfExpiry": "2019-07-06",
"dateOfBirth": "1999-06-02",
"address": {
"dynamicProperties": {}
},
"documentNumber": "XXXXX1231",
"dynamicProperties": {
"mrzGivenNames": "JOHN",
"mrzTYPE": "PASSPORT",
"sIDE": "1",
"mrzIssuingCountry": "NLD",
"documentNumber_CHECK": "1",
"mrzDateOfExpiry": "2019-07-06",
"mrzSex": "M",
"nationalityCode": "NLD",
"mrzLINE_CHECK": "0",
"personalGovID": "999999999",
"dOCUMENT_IDENTIFIER_CHARACTER": "P",
"personalGovID_CHECK": "9",
"mrzNationalityCode": "NLD",
"mrzSIDE": "1",
"mrzDOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"mrzPersonalGovID": "999999999",
"sex": "M",
"lINE_CHECK": "0",
"tYPE": "PASSPORT",
"mrzDOCUMENT_IDENTIFIER_CHARACTER": "P",
"mrzDateOfBirth": "1999-06-02",
"mrzSurname": "DOE",
"mrzPersonalGovID_CHECK": "9",
"dOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"issuingCountry": "NLD",
"mrzDocumentNumber": "XXXXX1231",
"mrzDocumentNumber_CHECK": "1",
"mrzLine1": "P<NLDDOE<<JOHN<<<<<<<<<<<<<<<<<<<<<<",
"mrzLine2": "XXXXX1231<1NLD8806127M1907069999999999<<<<90"
}
}
}
],
"type": "IdDocument",
"extractedData": {
"name": {
"fullName": "JOHN DOE",
"surname": "DOE",
"dynamicProperties": {},
"givenNames": "JOHN"
},
"dateOfExpiry": "2019-07-06",
"dateOfBirth": "1999-06-02",
"address": {
"dynamicProperties": {}
},
"documentNumber": "XXXXX1231",
"dynamicProperties": {
"nationalityCode": "NLD",
"sIDE": "1",
"dOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"issuingCountry": "NLD",
"sex": "M",
"personalGovID": "999999999",
"dOCUMENT_IDENTIFIER_CHARACTER": "P",
"lINE_CHECK": "0",
"personalGovID_CHECK": "9",
"documentNumber_CHECK": "1",
"tYPE": "PASSPORT"
}
},
"evidenceId": "26d4a0ae-60c7-4bee-8bf0-1f098b271f82"
},
{
"type": "Biometric",
"evidenceId": "b19099b1-5fd4-41d3-8fda-19b4f63a0aad"
}
],
"configuration": {
"verifications": {},
"responseImages": []
},
"findings": {
"verifications": [
{
"judgement": "Authentic",
"probability": 585,
"name": "Black And White Copy",
"verificationType": 102,
"documentId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 1000,
"name": "Image Classification",
"verificationType": 105,
"documentId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 1000,
"name": "ID Document Blacklist",
"verificationType": 101,
"documentId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 1000,
"name": "MRZ Check Digit",
"verificationType": 601,
"documentId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 920,
"name": "MRZ Font Type Authentication",
"verificationType": 600,
"documentId": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 993,
"name": "Face Comparison",
"verificationType": 301,
"documentId": "26d4a0ae-60c7-4bee-8bf0-1f098b271f82",
"version": "1.0",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 996,
"name": "Face Liveness",
"verificationType": 302,
"documentId": "b19099b1-5fd4-41d3-8fda-19b4f63a0aad",
"version": "1.0",
"notifications": {}
}
],
"authenticated": true,
"probability": 585
},
"derivedImages": [
{
"type": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"link": "{imageUrl}",
"path": "MITEK/75be7b9f-fef9-413d-889a-94c4b2d6dbb7/3caaffb2-5e88-4d41-82c3-cc2215828fc8"
},
{
"type": "3caaffb2-5e88-4d41-82c3-cc2215828fc8",
"link": "{imageUrl}",
"path": "MITEK/75be7b9f-fef9-413d-889a-94c4b2d6dbb7/3caaffb2-5e88-4d41-82c3-cc2215828fc8"
}
],
"dossierMetadata": {
"customerReferenceId": "75be7b9f-fef9-413d-889a-94c4b2d6dbb7",
"dossierId": "5cb9e500-1bd2-4097-8700-36d3e81eefb7",
"processingStatus": "Successful",
"createdDateTime": "2022-06-01T14:31:14.6683207Z",
"version": "v2.1.0"
},
"status": "Authenticated"
}

Auto flow rejected


{
"referenceImages": [
{
"type": "doc0",
"link": "{imageUrl}",
"path": "MITEK/07078972-bf3d-4739-bcf6-1a866753090d/doc0"
},
{
"type": "SF",
"link": "{imageUrl}",
"path": "MITEK/07078972-bf3d-4739-bcf6-1a866753090d/SF"
}
],
"evidence": [
{
"images": [
{
"processingStatus": "Successful",
"derivedImages": {
"croppedPortrait": {
"data": null,
"imageId": "c9923688-a9fb-44c5-b267-a2e15161945e"
},
"croppedDocument": {
"data": null,
"imageId": "c9923688-a9fb-44c5-b267-a2e15161945e"
}
},
"processingReasons": {},
"imageId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"classification": {
"mdsid": "MDS.2.0.NLD..PP...01",
"imageType": "PassportPicturePage"
},
"extractedData": {
"name": {
"fullName": "test x",
"surname": "test",
"dynamicProperties": {},
"givenNames": "x"
},
"dateOfExpiry": "2019-07-06",
"dateOfBirth": "1998-04-02",
"address": {
"dynamicProperties": {}
},
"documentNumber": "XXXXXX",
"dynamicProperties": {
"mrzGivenNames": "DOE",
"mrzTYPE": "PASSPORT",
"sIDE": "1",
"mrzIssuingCountry": "NLD",
"documentNumber_CHECK": "1",
"mrzDateOfExpiry": "2019-07-06",
"mrzSex": "M",
"nationalityCode": "NLD",
"mrzLINE_CHECK": "0",
"personalGovID": "99999",
"dOCUMENT_IDENTIFIER_CHARACTER": "P",
"personalGovID_CHECK": "9",
"mrzNationalityCode": "NLD",
"mrzSIDE": "1",
"mrzDOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"mrzPersonalGovID": "999999",
"sex": "M",
"lINE_CHECK": "0",
"tYPE": "PASSPORT",
"mrzDOCUMENT_IDENTIFIER_CHARACTER": "P",
"mrzDateOfBirth": "1988-06-12",
"mrzSurname": "XXXX",
"mrzPersonalGovID_CHECK": "9",
"dOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"issuingCountry": "NLD",
"mrzDocumentNumber": "XXXXX",
"mrzDocumentNumber_CHECK": "1",
"mrzLine1": "P<XXXXX<<XXX<<<<<<<<<<<<<<<<<<<<<<",
"mrzLine2": "XXXXXX<XXXXXX<<<<90"
}
}
}
],
"type": "IdDocument",
"extractedData": {
"name": {
"fullName": "DOE JONG",
"surname": "JONG",
"dynamicProperties": {},
"givenNames": "DOE"
},
"dateOfExpiry": "2019-07-06",
"dateOfBirth": "1988-06-12",
"address": {
"dynamicProperties": {}
},
"documentNumber": "XXXXXX",
"dynamicProperties": {
"nationalityCode": "NLD",
"sIDE": "1",
"dOCUMENT_IDENTIFIER_ADDITIONAL_CHARACTER": "<",
"issuingCountry": "NLD",
"sex": "M",
"personalGovID": "99999",
"dOCUMENT_IDENTIFIER_CHARACTER": "P",
"lINE_CHECK": "0",
"personalGovID_CHECK": "9",
"documentNumber_CHECK": "1",
"tYPE": "PASSPORT"
}
},
"evidenceId": "64c88349-60e8-4c3a-9e9f-9c046573e690"
},
{
"type": "Biometric",
"evidenceId": "408eac70-46c9-4d88-8126-7b09a1e10b82"
}
],
"configuration": {
"verifications": {},
"responseImages": []
},
"findings": {
"verifications": [
{
"judgement": "Authentic",
"probability": 563,
"name": "Black And White Copy",
"verificationType": 102,
"documentId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 1000,
"name": "Image Classification",
"verificationType": 105,
"documentId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 1000,
"name": "ID Document Blacklist",
"verificationType": 101,
"documentId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Fraudulent",
"probability": 0,
"name": "MRZ Check Digit",
"verificationType": 601,
"documentId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 740,
"name": "MRZ Font Type Authentication",
"verificationType": 600,
"documentId": "c9923688-a9fb-44c5-b267-a2e15161945e",
"version": "3.43.0.6238-exp",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 934,
"name": "Face Comparison",
"verificationType": 301,
"documentId": "64c88349-60e8-4c3a-9e9f-9c046573e690",
"version": "1.0",
"notifications": {}
},
{
"judgement": "Authentic",
"probability": 914,
"name": "Face Liveness",
"verificationType": 302,
"documentId": "408eac70-46c9-4d88-8126-7b09a1e10b82",
"version": "1.0",
"notifications": {}
}
],
"authenticated": false,
"probability": 0
},
"derivedImages": [
{
"type": "c9923688-a9fb-44c5-b267-a2e15161945e",
"link": "{imageUrl}",
"path": "MITEK/07078972-bf3d-4739-bcf6-1a866753090d/c9923688-a9fb-44c5-b267-a2e15161945e"
},
{
"type": "c9923688-a9fb-44c5-b267-a2e15161945e",
"link": "{imageUrl}",
"path": "MITEK/07078972-bf3d-4739-bcf6-1a866753090d/c9923688-a9fb-44c5-b267-a2e15161945e"
}
],
"dossierMetadata": {
"customerReferenceId": "07078972-bf3d-4739-bcf6-1a866753090d",
"dossierId": "78d2a4d3-452c-451c-96c0-ff7f807c608c",
"processingStatus": "Successful",
"createdDateTime": "2022-06-02T09:24:43.7690660Z",
"version": "v2.1.0"
},
"status": "Fraudulent"
}

Did this answer your question?