Skip to content

ContactMutationResponse

Result of creating a CRM contact through the active connector.

Properties

Property Type Required Description
successful boolean Yes Whether the CRM contact was created.
returnMessage ReturnMessage No
contact ContactInfo No

Example

{
  "successful": false,
  "returnMessage": {
    "message": "string",
    "messageType": "string",
    "ttl": 0,
    "details": [
      {}
    ]
  },
  "contact": {
    "id": "string",
    "name": "string",
    "phone": "string",
    "phoneNumber": "string",
    "type": "string",
    "title": "string",
    "company": "string",
    "email": "string",
    "createdDate": "string",
    "mostRecentActivityDate": "string",
    "additionalInfo": {},
    "isNewContact": false
  }
}