Represents a customer contact in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description | 
|---|---|---|
| GET customerContact | customerContact | Gets a customer contact object. | 
| DELETE customerContact | none | Deletes a customer contact object. | 
| PATCH customerContact | customerContact | Updates a customer contact object. | 
Navigation
| Navigation | Return Type | Description | 
|---|---|---|
| pdfDocument | pdfDocument | Gets the pdfdocument of the customerContact. | 
Properties
| Property | Type | Description | 
|---|---|---|
| id | GUID | The unique ID of the customer contact. Non-editable. | 
| string | Specifies the customer contact's email address. | |
| firstName | string | |
| lastName | string | |
| professionalTitle | string | |
| customerId | GUID | The unique ID of customer. | 
| customerName | string | The customer's name. | 
| primaryPhoneNumber | string | 
JSON representation
Here's a JSON representation of the customerContact resource.
{
    "id": "GUID",
    "email": "string",
    "firstName": "string",
    "lastName": "string",
    "professionalTitle": "string",
    "customerId": "GUID",
    "customerName": "string",
    "primaryPhoneNumber": "string"
}
Related information
GET customerContact DELETE customerContact PATCH customerContact