Get Customer Status

Once a customer is registered with the document storage system you can get their status and other details stored in the system without their document images by making this API call.

getStatus

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.

Request Body

{
    "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"
    }
}

Sample Request Body

{
"user": "USERNAME",
"pass": "PASSWORD",
"service": "getStatus",
"target": {
	"email": "test@veratad.com"
	}
}

Response Fields

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

Last updated