Contents
Identity Hub API Use Cases
Using Phone to Develop an Identity Graph Record
Phone numbers gathered from apps or consumer interactions to develop a more complete consumer view.
This search uses a telephone number from a consumer (from a contact center call, app or other means) to develop a complete consumer identitygraph record.
api-key | {{AUTHVARIABLE}} |
format | {{FORMAT}} |
input | phone |
phone | 8108675309 |
request | name,address,email,maid |
{
"input": {
"phone": "8108675309"
},
"result": {
"name": {
"found": true,
"firstname": "JACKIE",
"lastname": "CARITHERS"
},
"address": {
"found": true,
"address1": "4415 HUCKLEBERRY CIR",
"city": "COLUMBIAVILLE",
"state": "MI",
"zipcode": "48421",
},
"email": {
"found": true
"email": “jackiecar@gmail.com”
},
"maid": {
"found": true
"maid": “6B9B0372-30DF-4F03-BA9D-9443F686E1C8”
}
Using Email to Develop an Identity Graph Record
api-key | {{AUTHVARIABLE}} |
format | {{FORMAT}} |
input | |
happy_big_mama@yahoo.com | |
request | name,address,landline,wireless,MAID |
{
"input": {
"email": "happy_big_mama@yahoo.com"
},
"result": {
"name": {
"found": true,
"firstname": "LINDA",
"lastname": "VELA"
},
"address": {
"found": true,
"address1": "3242 GREENBRIAR DR",
"city": "LAKE",
"state": "MI",
"zipcode": "48632",
"zipcode4": "8913"
},
"landline": {
"found": true
”Landline”: “810-867-5309”
},
"wireless": {
"found": true
”Wireless”: “231-768-9035”
},
"maid": {
"found": true
”maid”: “6B9B0372-30DF-4F03-BA9D-9443F686E1C8”
}
}
Reverse Email Append for Name and Address
Resolve an email address to a name and address.
This search enables a brand to take an acquired email address and reverse append on name and address to develop a mailing record.
Input = email address
Output = Name, address
api-key | {{AUTHVARIABLE}} |
format | {{FORMAT}} |
input | |
happy_big_mama@yahoo.com | |
request | name,address |
{
"input": {
"email": "happy_big_mama@yahoo.com"
},
"result": {
"name": {
"found": true,
"firstname": "LINDA",
"lastname": "VELA"
},
"address": {
"found": true,
"address1": "3242 GREENBRIAR DR",
"city": "LAKE",
"state": "MI",
"zipcode": "48632",
"zipcode4": "8913"
}
"status": true
}