API Docs / Operations / Tasks - Import / Export Tasks CSV

Export Tasks CSV

GET /tenants/{tenant}/tasks/import/csv/export

Downloads the tenant's tasks as a native-format CSV. Re-importing the file updates
tasks matched by Code. Use this as the template for the native import format.
Client visibility applies: a restricted user exports only clientless tasks and
tasks for clients they can see.

Optional filters (with none, the export is the full visible dump):

  • status: one or more task statuses
  • dateRange: a preset range (ThisQuarter, ThisMonth, ...), or CustomDateRange with startDate and endDate
  • dateBasis: which date the range filters on — Any (default: start, due, or statutory in window), StartDate, DueDate, StatutoryDate or CompletedDate

Parameters

NameTypeDescription
tenant* path string

The Tenant.Code

The Tenant.Code

status query array

Filter by task status(es)

Filter by task status(es)

dateRange query string

Preset date range. If CustomDateRange, startDate and endDate are required.

Preset date range. If CustomDateRange, startDate and endDate are required.

startDate query string

Export tasks from this date. Only valid when dateRange=CustomDateRange

Export tasks from this date. Only valid when dateRange=CustomDateRange

endDate query string

Export tasks up to this date. Only valid when dateRange=CustomDateRange

Export tasks up to this date. Only valid when dateRange=CustomDateRange

dateBasis query string

Which date field the range filters on: Any (default), StartDate, DueDate, StatutoryDate or CompletedDate

Which date field the range filters on: Any (default), StartDate, DueDate, StatutoryDate or CompletedDate

Responses

200 OK
400 Bad Request
401 Unauthorized – Invalid or missing API key
403 Forbidden

Try it