PUT api/contacts/update
Request Information
URI Parameters
None.
Body Parameters
contact| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProfileId | globally unique identifier |
None. |
|
| MobilePhoneNumber | string |
None. |
|
| EmailAddress | string |
None. |
|
| FaxNumber | string |
None. |
|
| LandLinePhoneNumber | string |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
|
| profile | profile |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Contacts| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfileId | globally unique identifier |
None. |
|
| MobilePhoneNumber | string |
None. |
|
| EmailAddress | string |
None. |
|
| FaxNumber | string |
None. |
|
| LandLinePhoneNumber | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ProfileId": "65152efd-4424-41c9-9734-aa5dbe2fd66c",
"MobilePhoneNumber": "sample string 2",
"EmailAddress": "sample string 3",
"FaxNumber": "sample string 4",
"LandLinePhoneNumber": "sample string 5",
"Id": "439bd02e-260c-4728-9ea6-ee5667244456",
"CreatedDate": "2025-12-05T20:24:12.4588254-08:00",
"ModifiedDate": "2025-12-05T20:24:12.4588254-08:00",
"DeletedDate": "2025-12-05T20:24:12.4588254-08:00"
}
application/xml, text/xml
Sample:
<Contacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data"> <CreatedDate>2025-12-05T20:24:12.4588254-08:00</CreatedDate> <DeletedDate>2025-12-05T20:24:12.4588254-08:00</DeletedDate> <Id>439bd02e-260c-4728-9ea6-ee5667244456</Id> <ModifiedDate>2025-12-05T20:24:12.4588254-08:00</ModifiedDate> <EmailAddress>sample string 3</EmailAddress> <FaxNumber>sample string 4</FaxNumber> <LandLinePhoneNumber>sample string 5</LandLinePhoneNumber> <MobilePhoneNumber>sample string 2</MobilePhoneNumber> <ProfileId>65152efd-4424-41c9-9734-aa5dbe2fd66c</ProfileId> </Contacts>