Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 3.55 KB

File metadata and controls

16 lines (13 loc) · 3.55 KB

CrmCreateContactRequestDto

Fields

Field Type Required Description Example
firstName JsonNullable<String> The contact first name Steve
lastName JsonNullable<String> The contact last name Wozniak
companyName JsonNullable<String> The contact company name Apple Inc.
emails List<String> List of contact email addresses [
"steve@apple.com"
]
phoneNumbers List<String> List of contact phone numbers [
"123-456-7890"
]
dealIds List<String> List of associated deal IDs [
"deal-001",
"deal-002"
]
accountIds List<String> List of associated account IDs [
"account-123",
"account-456"
]
customFields List<CustomFields> Contact custom fields
passthrough Map<String, Object> Value to pass through to the provider {
"other_known_names": "John Doe"
}