POST 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": "76e9c037-ee68-4d25-a860-6b0ba29c3ef2",
"Requested_By": "2233dab7-5147-4edc-8d30-2baa71b4eb86",
"Date_Created": "2026-02-09T03:13:58.9279738-08:00",
"Date_Needed": "2026-02-09T03:13:58.9279738-08:00",
"Is_Done": true,
"Assigned_To": "e1de6687-16f3-4a48-8d67-c7c3cccad7c6",
"Description": "sample string 7",
"_Requested_By": "sample string 8",
"_Assigned_To": "sample string 9",
"PrimaryKey": "1a2f93c1-ffd3-429c-b00e-c642080e94f4"
}
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>1a2f93c1-ffd3-429c-b00e-c642080e94f4</PrimaryKey> <Assigned_To>e1de6687-16f3-4a48-8d67-c7c3cccad7c6</Assigned_To> <Date_Created>2026-02-09T03:13:58.9279738-08:00</Date_Created> <Date_Needed>2026-02-09T03:13:58.9279738-08:00</Date_Needed> <Description>sample string 7</Description> <Is_Done>true</Is_Done> <Requested_By>2233dab7-5147-4edc-8d30-2baa71b4eb86</Requested_By> <Task_Id>76e9c037-ee68-4d25-a860-6b0ba29c3ef2</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.