POST api/Todo/UpdateCompleteStatus
Update task complete status
Request Information
URI Parameters
None.
Body Parameters
Todo| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskID | integer |
None. |
|
| SubscriberID | integer |
None. |
|
| TaskTypeID | integer |
None. |
|
| TaskPriorityID | integer |
None. |
|
| BIUserID | integer |
None. |
|
| CreatedByBIUserID | integer |
None. |
|
| MemberID | integer |
None. |
|
| RegisteredUserID | integer |
None. |
|
| LeadID | integer |
None. |
|
| DueDate | date |
None. |
|
| Comment | string |
None. |
|
| DateCompleted | date |
None. |
|
| DateFlag | date |
None. |
|
| CreatedByUser | string |
None. |
|
| ForUser | string |
None. |
|
| FlagComplete | boolean |
None. |
|
| Completed | boolean |
None. |
|
| TaskFor | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TaskID": 1,
"SubscriberID": 2,
"TaskTypeID": 3,
"TaskPriorityID": 4,
"BIUserID": 5,
"CreatedByBIUserID": 6,
"MemberID": 7,
"RegisteredUserID": 8,
"LeadID": 9,
"DueDate": "2026-03-10T20:18:47.5878374+02:00",
"Comment": "sample string 11",
"DateCompleted": "2026-03-10T20:18:47.5878374+02:00",
"DateFlag": "2026-03-10T20:18:47.5878374+02:00",
"CreatedByUser": "sample string 13",
"ForUser": "sample string 14",
"FlagComplete": true,
"Completed": true,
"TaskFor": "sample string 16"
}
application/xml, text/xml
Sample:
<Todo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.BI.Entities"> <BIUserID>5</BIUserID> <Comment>sample string 11</Comment> <CreatedByBIUserID>6</CreatedByBIUserID> <CreatedByUser>sample string 13</CreatedByUser> <DateCompleted>2026-03-10T20:18:47.5878374+02:00</DateCompleted> <DateFlag>2026-03-10T20:18:47.5878374+02:00</DateFlag> <DueDate>2026-03-10T20:18:47.5878374+02:00</DueDate> <FlagComplete>true</FlagComplete> <ForUser>sample string 14</ForUser> <LeadID>9</LeadID> <MemberID>7</MemberID> <RegisteredUserID>8</RegisteredUserID> <SubscriberID>2</SubscriberID> <TaskFor>sample string 16</TaskFor> <TaskID>1</TaskID> <TaskPriorityID>4</TaskPriorityID> <TaskTypeID>3</TaskTypeID> </Todo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.