PUT api/Contact/Update
Request Information
URI Parameters
None.
Body Parameters
ContactModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
Required |
|
| EmailAddress | string |
Required |
|
| Message | string |
Required |
|
| PhoneNumber | string |
None. |
|
| StatusId | integer |
None. |
|
| AnsweredDate | date |
None. |
|
| AnsweredBy | string |
None. |
|
| AnswerMessage | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| Detail | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedBy | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedBy | globally unique identifier |
None. |
|
| ModifiedDate | date |
None. |
|
| DeletedBy | globally unique identifier |
None. |
|
| DeletedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"EmailAddress": "sample string 3",
"Message": "sample string 4",
"PhoneNumber": "sample string 5",
"StatusId": 6,
"AnsweredDate": "2026-08-05T17:49:06.3601129-07:00",
"AnsweredBy": "sample string 7",
"AnswerMessage": "sample string 8",
"Detail": "sample string 10",
"IsActive": true,
"CreatedBy": "f4710402-28d6-418b-a37b-b451cda00d63",
"CreatedDate": "2026-08-05T17:49:06.3601129-07:00",
"ModifiedBy": "d47522b1-162f-437f-b02a-4c847cd8972d",
"ModifiedDate": "2026-08-05T17:49:06.3601129-07:00",
"DeletedBy": "9f8f6aef-f528-46e6-961c-3c8e0d303dbf",
"DeletedDate": "2026-08-05T17:49:06.3601129-07:00"
}
application/xml, text/xml
Sample:
<ContactModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Contact"> <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">f4710402-28d6-418b-a37b-b451cda00d63</CreatedBy> <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2026-08-05T17:49:06.3601129-07:00</CreatedDate> <DeletedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">9f8f6aef-f528-46e6-961c-3c8e0d303dbf</DeletedBy> <DeletedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2026-08-05T17:49:06.3601129-07:00</DeletedDate> <Detail xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">sample string 10</Detail> <Id xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">02a781e5-10d4-44ec-b7eb-d3b5c65c04cc</Id> <IsActive xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">true</IsActive> <ModifiedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">d47522b1-162f-437f-b02a-4c847cd8972d</ModifiedBy> <ModifiedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2026-08-05T17:49:06.3601129-07:00</ModifiedDate> <AnswerMessage>sample string 8</AnswerMessage> <AnsweredBy>sample string 7</AnsweredBy> <AnsweredDate>2026-08-05T17:49:06.3601129-07:00</AnsweredDate> <EmailAddress>sample string 3</EmailAddress> <Id>1</Id> <Message>sample string 4</Message> <Name>sample string 2</Name> <PhoneNumber>sample string 5</PhoneNumber> <StatusId>6</StatusId> </ContactModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |