UpdateClientContactRequest
Request DTO for updating a client-contact relationship
Properties
| Name | Type | Description |
|---|---|---|
| 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 | |
JSON Example
{
"role": "string",
"types": [
"Main"
],
"contact": {
"code": "string",
"title": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string"
}
}