ContactDto
Represents a person or contact within the tenant's organization.
Contacts can be associated with one or more clients and contain contact details such as name, email, and phone numbers.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this contact |
The unique code for this contact | ||
| title | string | The contact's title (e.g., Mr, Mrs, Dr) |
The contact's title (e.g., Mr, Mrs, Dr) | ||
| firstName | string | The contact's first name |
The contact's first name | ||
| middleName | string | The contact's middle name |
The contact's middle name | ||
| lastName | string | The contact's last name (required) |
The contact's last name (required) | ||
| string | The contact's email address | |
The contact's email address | ||
| phone | string | The contact's phone number |
The contact's phone number | ||
| mobile | string | The contact's mobile number |
The contact's mobile number | ||
| clientCount | integer | The number of clients this contact is associated with. |
The number of clients this contact is associated with. | ||
| client | CodeAndNameDto | |
| individualClient | CodeAndNameDto | |
JSON Example
{
"code": "string",
"title": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string"
}
Used By Operations
Contained in Schemas
- ClientContactDto Response DTO for client-contact relationship information
- ContactDtoPaginatedResponse
- CreateClientContactRequest Request DTO for creating a new client-contact relationship
- TemplateVariables Root object containing all variables available for document template rendering. This class serves as...
- UpdateClientContactRequest Request DTO for updating a client-contact relationship