GET api/TaskClient/SelectSummaryByTaskID?TaskID={TaskID}&ShowInactive={ShowInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskID | integer |
Required |
|
| ShowInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
TaskSummaryByTaskID| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskID | integer |
None. |
|
| Task | string |
None. |
|
| Due | date |
None. |
|
| EntryID | integer |
None. |
|
| AccountID | integer |
None. |
|
| AccountName | string |
None. |
|
| AccountNumber | string |
None. |
|
| Entry | string |
None. |
|
| TaskType | string |
None. |
|
| TaskTypeID | integer |
None. |
|
| TaskOutcomeID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TaskID": 1,
"Task": "sample string 2",
"Due": "2026-01-15T08:36:17.2398116+00:00",
"EntryID": 1,
"AccountID": 1,
"AccountName": "sample string 3",
"AccountNumber": "sample string 4",
"Entry": "sample string 5",
"TaskType": "sample string 6",
"TaskTypeID": 7,
"TaskOutcomeID": 1
}
application/xml, text/xml
Sample:
<TaskSummaryByTaskID xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Task"> <AccountID>1</AccountID> <AccountName>sample string 3</AccountName> <AccountNumber>sample string 4</AccountNumber> <Due>2026-01-15T08:36:17.2398116+00:00</Due> <Entry>sample string 5</Entry> <EntryID>1</EntryID> <Task>sample string 2</Task> <TaskID>1</TaskID> <TaskOutcomeID>1</TaskOutcomeID> <TaskType>sample string 6</TaskType> <TaskTypeID>7</TaskTypeID> </TaskSummaryByTaskID>