POST api/References/UpdateReference
Request Information
URI Parameters
None.
Body Parameters
Reference| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| phone | integer |
None. |
|
| created | date |
None. |
|
| createdBy | string |
None. |
|
| updated | date |
None. |
|
| updatedBy | string |
None. |
|
| status | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"phone": 1,
"created": "2025-12-09T19:03:33.1230599-08:00",
"createdBy": "sample string 3",
"updated": "2025-12-09T19:03:33.1230599-08:00",
"updatedBy": "sample string 4",
"status": true
}
application/xml, text/xml
Sample:
<Reference xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API"> <created>2025-12-09T19:03:33.1230599-08:00</created> <createdBy>sample string 3</createdBy> <id>1</id> <name>sample string 2</name> <phone>1</phone> <status>true</status> <updated>2025-12-09T19:03:33.1230599-08:00</updated> <updatedBy>sample string 4</updatedBy> </Reference>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.