Search...
Generate a test token to explore our APIs
Contact Object
Deprecation Notice
The Contacts v1 API has been replaced with Contacts v4 and will be removed on March 31, 2022. If your app uses this endpoint, we recommend updating your code as soon as possible.
Attributes
NAME
TYPE
DESCRIPTION
id
Read Only
string
Contact ID (unique)
firstName
string
Contact first name
lastName
string
Contact Last name
emails
Array<object>
Contact email address data
phones
Array<object>
Contact phone number data
addresses
Array<object>
Contact address data
metadata
object
Contact metadata
source
Read Only
object
Contact Source
Was this helpful?
Object
json
1{2 "id" : "8046df3c-7575-4098-a5ab-c91ad8f33c47",3 "firstName" : "Some",4 "lastName" : "One",5 "emails" : [ {6 "tag" : "MAIN",7 "email" : "email@test.rocks"8 } ],9 "phones" : [ {10 "tag" : "HOME",11 "phone" : "2075556300"12 }, {13 "tag" : "MOBILE",14 "phone" : "2075555217"15 } ],16 "addresses" : [ {17 "tag" : "HOME",18 "street" : "1772 Fantages Way",19 "city" : "Richmond",20 "region" : "ME",21 "country" : "US",22 "postalCode" : "04357"23 } ],24 "metadata" : {25 "createdAt" : "2019-10-30T17:22:10.299Z",26 "updatedAt" : "2019-11-13T20:14:49.458Z"27 }28}