v1

latestOpenAPI 3.1.0Apache 2.02026-07-24196597.7 KB
dob

DOB Verification

DOB verification job

post/api/dob/verify

Headers

content-typestring
acceptstring

Request body

firstNamestring required

First name linked to this phone number in the request. The request must contain the firstname or lastname to be successful

lastNamestring required

Last name linked to the phone number in the request. The request must contain the firstname or lastname to be successful

phonestring required

The phone number of the individual for this request. Only accepts US and CA numbers. Must be in E.164 format with or without a leading +1. For example +11234567890 or 1234567890.

emailstring

Email linked to the phone number in the request

dobstring required

Date of birth identifier used as qualifying input. Date should be in ISO 8601 format https://en.wikipedia.org/wiki/ISO_8601 YYYY-MM-DD. For example, 1990-01-30.

Example request

{
  "phone": "+11234567890",
  "dob": "1990-01-30"
}

Response

Success

idstring
statusstring
completedboolean
submittedstring
updatedAtstring

Example response

{
  "errors": [
    {
      "suggestion": "John Smith"
    }
  ]
}