Tasks
Comprehensive task management including creation, assignment, tracking, and filtering. Supports listing tasks with flexible date range handling, filtering by client, user, recurring task, and status. Can optionally include projected (virtual) tasks alongside materialized tasks. Provides full CRUD operations for task creation, retrieval, updating, and deletion with multi-tenant scoping.
-
POST
Create TaskItem
Creates a new TaskItem for the specified tenant.
/api/tenants/{tenant}/tasks
-
GET
List TaskItems
Lists TaskItems for the given tenant. Supports two modes based on includeWorkflowSteps parameter:
**Standard Mode (includeWorkflowSteps=false...
/api/tenants/{tenant}/tasks
-
GET
Get TaskItem
Gets a TaskItem for the specified tenant.
/api/tenants/{tenant}/tasks/{code}
-
PUT
Update TaskItem
Updates a TaskItem for the specified tenant.
/api/tenants/{tenant}/tasks/{code}
-
DELETE
Delete TaskItem
Deletes a TaskItem for the specified tenant.
/api/tenants/{tenant}/tasks/{code}