Skip to content

ContactInfo

Connector-normalized CRM contact returned by lookup and create operations.

Properties

Property Type Required Description
id any of: string, number No CRM record identifier. The synthetic create-new-contact choice uses the exact sentinel createNewContact.
name string No CRM contact display name.
phone string No Phone number associated with the matched contact.
phoneNumber string No Compatibility alias for the matched contact phone number.
type string No CRM entity type, such as Contact, Lead, or Candidate.
title string No Contact job title when supplied by the connector.
company string No Contact company or organization name.
email string No Contact email address.
createdDate string No Connector-formatted CRM record creation date or timestamp.
mostRecentActivityDate string No Connector-formatted date or timestamp of the contact's most recent CRM activity.
additionalInfo object of any No Connector-defined association, ownership, or display metadata for this contact.
isNewContact boolean No Whether this is a synthetic create-new-contact option rather than an existing CRM record.

Example

{
  "id": "string",
  "name": "string",
  "phone": "string",
  "phoneNumber": "string",
  "type": "string",
  "title": "string",
  "company": "string",
  "email": "string",
  "createdDate": "string",
  "mostRecentActivityDate": "string",
  "additionalInfo": {},
  "isNewContact": false
}