PUT api/TaskInfo
Request Information
URI Parameters
None.
Body Parameters
TaskInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Task_Id | globally unique identifier |
None. |
|
| Requested_By | globally unique identifier |
None. |
|
| Date_Created | date |
None. |
|
| Date_Needed | date |
None. |
|
| Is_Done | boolean |
None. |
|
| Assigned_To | globally unique identifier |
None. |
|
| Description | string |
None. |
|
| _Requested_By | string |
None. |
|
| _Assigned_To | string |
None. |
|
| PrimaryKey | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Task_Id": "f0f3808d-a512-4df7-8eaa-6dd56099cb4b",
"Requested_By": "c148eb16-2fd0-4cfb-8eba-e882964e6865",
"Date_Created": "2026-04-10T04:06:46.2364111-07:00",
"Date_Needed": "2026-04-10T04:06:46.2364111-07:00",
"Is_Done": true,
"Assigned_To": "7f6cbf78-2510-4b31-b372-7e229294e33a",
"Description": "sample string 7",
"_Requested_By": "sample string 8",
"_Assigned_To": "sample string 9",
"PrimaryKey": "87f967e6-0c83-41cb-b749-a9178a621ff9"
}
application/xml, text/xml
Sample:
<TaskInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/brmcph.entity"> <PrimaryKey>87f967e6-0c83-41cb-b749-a9178a621ff9</PrimaryKey> <Assigned_To>7f6cbf78-2510-4b31-b372-7e229294e33a</Assigned_To> <Date_Created>2026-04-10T04:06:46.2364111-07:00</Date_Created> <Date_Needed>2026-04-10T04:06:46.2364111-07:00</Date_Needed> <Description>sample string 7</Description> <Is_Done>true</Is_Done> <Requested_By>c148eb16-2fd0-4cfb-8eba-e882964e6865</Requested_By> <Task_Id>f0f3808d-a512-4df7-8eaa-6dd56099cb4b</Task_Id> <_Assigned_To>sample string 9</_Assigned_To> <_Requested_By>sample string 8</_Requested_By> </TaskInfo>
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.