Resolve (old)
Receive FullContact's unique, persistent identifier (Person ID) associated with the input(s) provided.
You can use Resolve to obtain your company's unique and persistent identifier (Person ID) that corresponds to an individual in order to link the records of individuals that you may have in various platforms or databases with high match rates and confidence levels.
curl -X POST \
https://api.full.id/v3/verify.signals \
-H 'Authorization: Bearer {Your API Key}' \
-H "Content-Type: application/json" \
-d '{
"emails": [
"[email protected]"
],
"phones": [
"+15552227799"
],
"location": {
"addressLine1": "123 Main Street",
"city": "Denver",
"region": "Colorado",
"regionCode": "CO",
"postalCode": "80203"
},
"name": {
"given": "Sally",
"family": "Smith"
},
"profiles": [{
"service": "twitter",
"username": "smith"
}, {
"service": "twitter",
"userid": "123456"
}, {
"service": "linkedin",
"url": "https://www.linkedin.com/in/sallysmi"
}, {
"service": "github",
"url": "https://www.github.com/smith"
}],
"maids": ["ape2ch30-pifn-cbvi-30yy-nia-zex7aw5u"],
"li_nonid": "-CmQui5eT6tqBVqQ874WGCv4DNO_taXJOAxVlQ",
"panoramaId": "294293d141c731300758a10feda14945c111e0abcd04c8208f09ff058781337b"
}'
{
"personIds": [
"c0VAsuEb4DRPuXmEXLutGitk-Hq9xUMautmqzyfuHpZyl3EP"
]
}
Resolve Signals Response Properties | |
---|---|
personIds list Queryable | The persistent generated unique identifier for the provided multi field payload. |
Response Codes & Errors
Response Codes | Message |
---|---|
200 - OK | Your request was successful |
204 - No Content | Individual is not found within FullContact's Identity Graph |
400 - Bad Request | Your request was invalid |
500 - Server Error | Something is broken on FullContact's side. If you encounter this, please contact us at [email protected] for assistance. |
503 - Service Unavailable | There is a transient downstream error condition. We include a 'Retry-After' header dictating when to attempt the call again. |
Updated 6 months ago