Save API results to the Back Office
Learn how to save API results to back office
When making API calls you can save the results to your Datakeen back office.
This feature is only available for users with an API access and a platform account
Making your first call with save : True
You can save API results and detected documents to your Datakeen back office by adding the save parameter to your API calls like so :
Example for reco/id :
{
"paramDict":{
"files":[
"data:image/jpg;base64,A13...",
"data:image/jpg;base64,B45..."
],
"userInput":{
"firstName": "Jean",
"lastName": "Dupont",
},
"save":true
}
}
Example for reco/bankdetails :
{
"paramDict":{
"file":"data:image/jpg;base64,A13...",
"userInput":{
"firstName": "Jean",
"lastName": "Dupont",
},
"save":true
}
}
In the API answer you will receive a "verificationId" corresponding to the unique verification identifier in the Datakeen back office.
Making other API calls for the same person or entity
You might want to make a new API call but for the same person or entity or group of entities.
In that case you must add the verificationId in your API call, like so :
Example for reco/id :
{
"paramDict":{
"files":[
"data:image/jpg;base64,A13...",
"data:image/jpg;base64,B45..."
],
"userInput":{
"firstName": "Jean",
"lastName": "Dupont",
},
"save":true,
"verificationId":"ABCD1234"
}
}
Example for reco/bankdetails :
{
"paramDict":{
"file":"data:image/jpg;base64,A13...",
"userInput":{
"firstName": "Jean",
"lastName": "Dupont",
},
"save":true,
"verificationId":"ABCD1234"
}
}
Finding the analysis on your back office
Connect to your Datakeen Back Office.
Navigate to "Analysis"
Click on the analysis with the name of your verificationId, you can use the search bar if needed.
You will see all the relevant extractions in the fields :
Updated 8 months ago