UpdateContactRequest
DTO for updating a contact
Properties
| Name | Type | Description |
|---|---|---|
| title | string | The contact's title (e.g., Mr, Mrs, Ms, Dr) |
The contact's title (e.g., Mr, Mrs, Ms, 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 landline phone number |
The contact's landline phone number | ||
| mobile | string | The contact's mobile phone number |
The contact's mobile phone number | ||
JSON Example
{
"title": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string",
"email": "string"
}