v1

latestOpenAPI 3.0.3Proprietary2026-07-1713346131.7 KB
Reporting

All tasks report

Returns filtered, sorted and paginated all-tasks reporting dataset.

post/reporting/all-tasks

Request body

indexinteger required
sizeinteger required
sortFieldstring
sortOrder'asc' | 'desc'
searchstring nullable
teamsstring[] nullable
projectsstring[] nullable
statusesstring[] nullable
prioritiesstring[] nullable
assigneesstring[] nullable
labelsstring[] nullable
phasesstring[] nullable
dateField'due_date' | 'start_date' | 'created_at' | 'completed_at' nullable
dateFromstring date nullable
dateTostring date nullable
includeArchivedboolean
includeSubtasksboolean
completionStatus'all' | 'completed' | 'incomplete' | 'overdue'
billable'all' | 'billable' | 'non-billable'
groupBystring nullable

Example request

{
  "index": 1,
  "size": 20,
  "sortField": "end_date",
  "statuses": [
    "todo"
  ]
}

Response

All tasks data retrieved

doneboolean required

Indicates if the operation was successful

{"stackTrail":"components:schemas:ServerResponse:properties:body","oasType":"schema","type":"unknown","description":"Response data (type varies by endpoint, null if no data)","nullable":true}
titlestring nullable

Optional response title

messagestring nullable

Optional message (error message or success notification)

Example response

{
  "done": true,
  "message": "Operation completed successfully"
}