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": "9005d32a-d1b5-4d5f-91fc-7fed1c75cc25",
"Requested_By": "3e593a1b-b428-4dc0-992f-a3e3c9022a63",
"Date_Created": "2026-06-09T02:34:37.9470207-07:00",
"Date_Needed": "2026-06-09T02:34:37.9470207-07:00",
"Is_Done": true,
"Assigned_To": "83edf88a-bfcc-411b-bf15-6cf011a2451e",
"Description": "sample string 7",
"_Requested_By": "sample string 8",
"_Assigned_To": "sample string 9",
"PrimaryKey": "3653613d-c14f-496f-97b5-df381605d55f"
}
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>3653613d-c14f-496f-97b5-df381605d55f</PrimaryKey> <Assigned_To>83edf88a-bfcc-411b-bf15-6cf011a2451e</Assigned_To> <Date_Created>2026-06-09T02:34:37.9470207-07:00</Date_Created> <Date_Needed>2026-06-09T02:34:37.9470207-07:00</Date_Needed> <Description>sample string 7</Description> <Is_Done>true</Is_Done> <Requested_By>3e593a1b-b428-4dc0-992f-a3e3c9022a63</Requested_By> <Task_Id>9005d32a-d1b5-4d5f-91fc-7fed1c75cc25</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.