Get Customer Document Images
Once a customer is registered with the document storage system you can get their status and other details stored in the system including their document images by making this API call.
getDocumentImages
POST
https://dcams.app/v3/stable/api/storage
This endpoint allows you to get the status of a customer account already registered in the system including their document images.
Request Body
Name
Type
Description
user*
string
Your Veratad API Username
pass*
string
Your Veratad API Password
service*
string
The service name "getDocumentImages"
target
object
The target of the query
string
The user's email address for status lookup
{
"result": "Success",
"reference": "888888812",
"status": "PASS",
"target": {
"fn": "John",
"ln": "Smith",
"addr": "123 Main St",
"city": "Stratford",
"state": "CT",
"zip": "06614",
"dob": "19700101",
"email": "[email protected]",
"phone": "2015106000"
"documents": {
"front": "base64 encoded string of image",
"back": "base64 encoded string of image"
}
}
}
Sample Request Body
{
"user": "USERNAME",
"pass": "PASSWORD",
"service": "getDocumentImages",
"target": {
"email": "[email protected]"
}
}
Response Fields
attribute
values
result
Success
Error
status
PASS
PENDING
FAIL
Last updated