Create Token

The Create Token process is designed to generate a unique token to be used in the frontend of the iFrame solution in order to identify your site and settings to Veratad.

Create Token

POST https://dcams.app/v3/stable/token/create

This endpoint creates your token with associated settings to access a document iFrame session.

Request Body

NameTypeDescription

user

string

Your Veratad API username

pass

string

Your Veratad API Password

age

string

The age you want to check.This needs to be sent with a "+" at the end like "21+". In that example you are checking that the user is 21 and above.

rules

string

The DCAMS+ and DCAMS+Review data matching rules. See below for values.

company_name_for_email

string

Use this to change the company name that appears in the email sent to the customer.

email_logo_link

string

Set a link to a logo image to be placed on the top of the email to the customer

email_logo_height

string

Set the logo height in px

email_logo_width

string

Set the logo width in px

store_on

string

If DCAMS Storage is active in your account you can decide what DCAMS+ Scan result you want to store. Acceptable values are: PASS FAIL ALL If you do not specify this value the document will not be stored.

{
    "result": "Success",
    "message": "Token created successfully",
    "token": "393d50f9-2703-4100-9e4b-dfd8e4fda493",
    "age": "21+",
    "rules": "DCAMS5_0_RuleSet_NAME_DOB",
    "store_on": "FAIL",
    "company_name_for_email": "Company ABC",
    "email_logo_link": "https://yourcompany.com/logo.png",
    "email_logo_height": "50",
    "email_logo_width": "80",
    "dcams_manual_rules": "DCAMS5_0_Manual_Review_RuleSet_NAME_DOB"
}

IMPORTANT: The token is only good for 6 hours. It is recommended that you generate a new token on each iFrame request.

Request Body

{
    "user": "USERNAME",
    "pass": "PASSWORD",
    "age": "21+",
    "rules": "DCAMS5_0_RuleSet_NAME_DOB",
    "store_on": "FAIL",
    "company_name_for_email": "Company ABC",
    "email_logo_link": "https://yourcompany.com/logo.png",
    "email_logo_height": "50",
    "email_logo_width": "80",
    "dcams_manual_rules": "DCAMS5_0_Manual_Review_RuleSet_NAME_DOB"
}

DCAMS+ & DCAMS+REVIEW Matching Rules

When processing a scan or a manual review you can define what elements from your customer parameters must match the information found on the document provided.

EXAMPLE

If you send DCAMS5_0_RuleSet_NAME_DOB this means that the Name and Date of Birth from your customer's parameters must match the Name and Date of Birth found on the document.

If you leave this value empty then NO matching rules will be used.

Here are the available DCAMS+ rule sets:

  • DCAMS5_0_RuleSet_NAME_DOB

  • DCAMS5_0_RuleSet_NAME

  • DCAMS5_0_RuleSet_NAME_ADDR

  • DCAMS5_0_RuleSet_NAME_STATE

  • DCAMS5_0_RuleSet_NAME_STATE_DOB

  • DCAMS5_0_RuleSet_NAME_ADDR_DOB

Here are the available DCAMS+REVIEW rule sets:

  • DCAMS5_0_Manual_Review_RuleSet_NAME_DOB

  • DCAMS5_0_Manual_Review_RuleSet_NAME

Last updated