Age / DOB Append HTTP API

Description

This API takes Postal & Name input or Email input & returns choice of Age or Date of Birth. It supports HTTP POST requests.

Postal + Name Input Format​

{

“ApiKey”: “put your key here“,
“AppendModule”: “DOBAgeAppend“,
“AppendType”: 1,
“Data”: [
{
“FirstName”: “Bxxxxxa“,
“LastName”: “Sxxxxr“,
“Address”: “1xxxx Rxxx Mxxxxx Rx“,
“City”: “Nxxxx Axxxx“,
“State”: “xx“,
“Zip”: “1xxx0
}]

}

Email Input Format

{

“ApiKey”: “put your key here“,
“AppendModule”: “DOBAgeAppend“,
“AppendType”: 1,
“Data”: [
{
“Email”: “[email protected]“,
}]

}

Multi-Request Example

{

“ApiKey”: “put your key here“,
“AppendModule”: “DOBAgeAppend“,
“AppendType”: 1,
“Data”: [
{
“FirstName”: “Bxxxxxa“,
“LastName”: “Sxxxxr“,
“Address”: “1xxxx Rxxx Mxxxxx Rx“,
“City”: “Nxxxx Axxxx“,
“State”: “xx“,
“Zip”: “1xxx0
},
{
“FirstName”: “Bxxxxxa“,
“LastName”: “Sxxxxr“,
“Address”: “1xxxx Rxxx Mxxxxx Rx“,
“City”: “Nxxxx Axxxx“,
“State”: “xx“,
“Zip”: “1xxx0
}]

}

Response

If success:

 }
    “ResponseDetail”: {
        “App”0,
        “Token”“Token Provided”,
        “Data”: [
            {
                “Matched”true,
                “Email”[email protected],
                “DOB”“mm/dd/yyyy”,
                “Age”null,
                “FirstName”Bxxxxxa,
                “LastName”Sxxxxr,
                “Address”1xxxx Rxxx Mxxxxx Rx,
                “City”Nxxxx Axxxx,
                “State”xx,
                “Zip”1xxx0
            }
        ],
        “OrderAmount”“$0.02”,
        “Count”1,
    },
    “Status”true,
    “Message”null
}

If failed:

{
      “ResponseDetail”: null,

      “Status”: false,
      “Message”: “Invalid API Key.”
}

Append Type Description:

{
     1   –   DOB Append

     2   –   Age Append 
}