Update Customer Status

Once a customer is registered with the document storage system you can update their status stored in the system by making this API call.

updateStatus

POST https://dcams.app/v3/stable/api/storage

This endpoint allows you to update the status of a customer account already registered in the system.

Request Body

Name
Type
Description

user*

string

Your Veratad API Username

pass*

string

Your Veratad API Password

service*

string

The service name "getStatus"

target

object

The target of the query

email

string

The user's email address for status lookup

status

string

The status for update

{
    "result": "Success",
    "reference": "888888812",
    "target": {
        "fn": "John",
        "ln": "Smith",
        "addr": "123 Main St",
        "city": "Stratford",
        "state": "CT",
        "zip": "06614",
        "dob": "19700101",
        "email": "[email protected]",
        "phone": "2015106000",
        "status": "PASS"
    }
}

Sample Request Body

{
"user": "USERNAME",
"pass": "PASSWORD",
"service": "updateStatus",
"target": {
    "email": "[email protected]", 
    "status": "PASS"
    }
}

Request Fields

attribute
values

status

PASS

PENDING

FAIL

Response Fields

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

attribute
values

result

Success

Error

status

PASS

PENDING

FAIL

Last updated