POST v2/contact/{contactID}/title/save
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contactID | integer |
Required |
Body Parameters
ContactTitleModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactTitleID | integer |
None. |
|
| Title | TitleModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"contactTitleID": 1,
"title": {
"titleID": 1,
"title": "sample string 2",
"isActive": true
}
}
Response Information
Resource Description
ContactModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactID | integer |
None. |
|
| IsActive | boolean |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| PhoneNumber | string |
None. |
|
| Teams | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"contactID": 1,
"isActive": true,
"firstName": "sample string 3",
"lastName": "sample string 4",
"email": "sample string 5",
"phoneNumber": "sample string 6",
"teams": "sample string 7"
}