POST api/list/stats/todotasks
Todo Tasks. Processes this list stats API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The filters value supplied with the request.
Collection of TodoTaskListFilterDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Statuses |
The collection of statuses. |
Collection of string |
None. |
| Schedules |
The collection of schedules. |
Collection of string |
None. |
| NegotiatorIds |
The unique identifiers of the related negotiator resources. |
Collection of integer |
None. |
| TodoIds |
The unique identifiers of the related todo resources. |
Collection of integer |
None. |
| Ids |
The unique identifiers of the related api resources. |
Collection of integer |
None. |
| DateFrom |
The date from, expressed as a date and time. |
date |
None. |
| DateTo |
The date to, expressed as a date and time. |
date |
None. |
| Date |
The date value. |
DateRangeFilterDataContract |
None. |
| Sort |
The sort classification. |
TodoListSort |
None. |
| OwningNegotiatorId |
The unique identifier of the related owning negotiator resource. |
integer |
None. |
| ClaimedNegotiatorId |
The unique identifier of the related claimed negotiator resource. |
integer |
None. |
| IsOverdueOnly |
Indicates whether this item is overdue only. |
boolean |
None. |
| Name |
The name value. |
string |
None. |
| CustomFilterConfig |
The custom filter config value. |
string |
None. |
| BranchId |
The unique identifier of the related branch resource. |
integer |
None. |
| BranchIds |
The unique identifiers of the related branch resources. |
Collection of integer |
None. |
| EventBranchIds |
The unique identifiers of the related event branch resources. |
Collection of integer |
None. |
| Order |
The order classification. |
ListOrder |
None. |
| SearchTerm |
The search term value. |
string |
None. |
| FilterType |
The filter type value. |
EnumDataContract |
None. |
| ShowDeleted |
Indicates whether show deleted is true. |
boolean |
None. |
| ShowCancelled |
Indicates whether show cancelled is true. |
boolean |
None. |
| OwningTeamId |
The unique identifier of the related owning team resource. |
integer |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
[
{
"Statuses": [
"sample string 1",
"sample string 2"
],
"Schedules": [
"sample string 1",
"sample string 2"
],
"NegotiatorIds": [
1,
2
],
"TodoIds": [
1,
2
],
"Ids": [
1,
2
],
"DateFrom": "2026-07-23T08:17:25.6966863Z",
"DateTo": "2026-07-23T08:17:25.6966863Z",
"Date": {
"FromStaticDate": "2026-07-23T08:17:25.6966863Z",
"ToStaticDate": "2026-07-23T08:17:25.6966863Z",
"PredefinedDateRange": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"FromExpression": "sample string 1",
"ToExpression": "sample string 2",
"Id": 3
},
"Sort": 0,
"OwningNegotiatorId": 1,
"ClaimedNegotiatorId": 1,
"IsOverdueOnly": true,
"Name": "sample string 2",
"CustomFilterConfig": "sample string 3",
"BranchId": 1,
"BranchIds": [
1,
2
],
"EventBranchIds": [
1,
2
],
"Order": 0,
"SearchTerm": "sample string 4",
"FilterType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ShowDeleted": true,
"ShowCancelled": true,
"OwningTeamId": 7,
"Id": 8
},
{
"Statuses": [
"sample string 1",
"sample string 2"
],
"Schedules": [
"sample string 1",
"sample string 2"
],
"NegotiatorIds": [
1,
2
],
"TodoIds": [
1,
2
],
"Ids": [
1,
2
],
"DateFrom": "2026-07-23T08:17:25.6966863Z",
"DateTo": "2026-07-23T08:17:25.6966863Z",
"Date": {
"FromStaticDate": "2026-07-23T08:17:25.6966863Z",
"ToStaticDate": "2026-07-23T08:17:25.6966863Z",
"PredefinedDateRange": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"FromExpression": "sample string 1",
"ToExpression": "sample string 2",
"Id": 3
},
"Sort": 0,
"OwningNegotiatorId": 1,
"ClaimedNegotiatorId": 1,
"IsOverdueOnly": true,
"Name": "sample string 2",
"CustomFilterConfig": "sample string 3",
"BranchId": 1,
"BranchIds": [
1,
2
],
"EventBranchIds": [
1,
2
],
"Order": 0,
"SearchTerm": "sample string 4",
"FilterType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ShowDeleted": true,
"ShowCancelled": true,
"OwningTeamId": 7,
"Id": 8
}
]
Response Information
Resource Description
The response returned after the operation completes.
PagedCollectionDataContractOfListStatsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount |
The total count value. |
integer |
None. |
| CurrentCount |
The current count value. |
integer |
None. |
| PageSize |
The page size value. |
integer |
None. |
| PageNumber |
The page number value. |
integer |
None. |
| Collection |
The collection of collection. |
Collection of ListStatsDataContract |
None. |
Response Formats
application/json, text/json
{
"TotalCount": 1,
"CurrentCount": 2,
"PageSize": 1,
"PageNumber": 1,
"Collection": [
{
"Name": "sample string 1",
"Value": 2
},
{
"Name": "sample string 1",
"Value": 2
}
]
}