Retrieves the detail of an existing contact. You need to pass the unique impact.com contact Id
value that was returned upon contact creation or when listing contacts.
Parameters
No parameters.
Returns
Returns a contact object if a valid identifier is provided. Returns an error for invalid or deleted contact identifiers.
Example Request
curl 'https://api.impact.com/Advertisers/<AccountSID>/Campaigns/1000/Contacts/2750' \
-X GET \
-u '<AccountSID>:<AuthToken>' \
-H 'Accept: application/json'
Example Response
{
"Id": "2750",
"FirstName": "Wile",
"LastName": "Coyote",
"EmailAddress": "[email protected]",
"Title": "",
"ProfileImage": "/Advertisers/<AccountSID>/Campaigns/1000/Contacts/2750/ProfileImage",
"WorkPhoneNumberCountry": "US",
"WorkPhoneNumber": "8051234567",
"CellphoneNumberCountry": "US",
"CellphoneNumber": "8059876543",
"Editable": "true",
"Labels": [],
"Accounts": {
"Account": {
"Id": "10000",
"Name": "Acme Partner"
}
},
"Uri": "/Advertisers/<AccountSID>/Campaigns/1000/Contacts/2750"
}