Skip to content

Get Details of a Single Contact

Method: GET

Url: /Contacts/{ContactID} (e.g. /Contacts/1234)
Header: DPApiAuthenticationToken={YOUR_API_TOKEN}

Query String: None

Request Example:
GET “https://api.dataprise.com/api/v1/Contacts/1234″Header: “DPApiAuthenticationToken=abcxyz0123456789”

Response:

The API will return the details of the contact if the provided ContactID is valid, with the following fields:

Column NameData TypeRemarks
ContactIDIntegerThe unique ID of the record.
FirstNameStringThe first name of the contact
LastNameStringThe last name of the contact
EmailAddressStringThe email address of the contact as registered with us
Address1StringThe first line of contact’s address
Address2StringThe second line of contact’s address
CityString
StateString
ZipString
CountryString
IsNonUSAddressBooleanWhether the address is from outside the USA
WorkPhoneString
WorkExtString
MobilePhoneString
TitleString
PrimaryContactBooleanWhether the contact is the primary contact as registered with us
POCBooleanWhether the contact is the Point-of-Contact as registered with us
IsSubClientBooleanWhether the contact is a client of your organization
SubClientOrganizationNameStringThe organization name of the contact, applicable only if the contact is a client of your organization (i.e. IsSubClient)
CustomFieldsList<CustomField>List of custom fields (key-value pair) for this record
Sample Response:
{ “ContactID”: 1234, “FirstName”: “Test”, “LastName”: “Cntct”, “EmailAddress”: “[email protected]”, “City”: “”, “State”: “”, “Zip”: “”, “WorkPhone”: “”, “WorkExt”: “”, “MobilePhone”: “”, “Title”: “”, “PrimaryContact”: false, “POC”: false, “IsSubClient”: false, “SubClientOrganizationName”: “”, “CustomFields”: null }