ClientContactDto
Response DTO for client-contact relationship information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this relationship (uses the contact's code) |
The unique code for this relationship (uses the contact's code) | ||
| role | string | The role of the contact within this client relationship |
The role of the contact within this client relationship | ||
| types | array of enum | The type of contact relationship |
The type of contact relationship | ||
| contact | ContactDto | |
| client | CodeAndNameDto | |
| individualClient | CodeAndNameDto | |
| createdDate | string | When the relationship was created |
When the relationship was created | ||
| updatedDate | string | When the relationship was last updated |
When the relationship was last updated | ||
JSON Example
{
"code": "string",
"role": "string",
"types": [
"Main"
],
"contact": {
"code": "string",
"title": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string"
},
"client": {
"code": "string",
"name": "string"
}
}