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

NameTypeDescription

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

email

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": "test@veratad.com",
        "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": "test@veratad.com"
    }
}

Response Fields

The response will include all of the target attributes stored within the system for this user, including their document images, and the following varying fields.

attribute

values

result

Success

Error

status

PASS

PENDING

FAIL

Last updated