Task
/api/v1/edm-projects/tasksA unit of work within a Project.
listgetcreateupdatedeleteSchema
| Field | Type | Notes |
|---|---|---|
| id* | uuid | Server-assigned ULID with type prefix (e.g. per_…). |
| tenant_id* | string | Tenant scope — auto-stamped from the caller's JWT. |
| app_id | string | App scope. Stamped ONLY when the caller's JWT was minted for a specific Application (integration API keys). Absent for human-user sessions. Filters reads when present. |
| created_at* | date-time | Server stamp. |
| updated_at* | date-time | Server stamp; updated on every patch. |
| created_by | uuid | Person id from the caller's JWT (sub). |
| updated_by | uuid | Person id from the last writer's JWT (sub). |
| source | string | Provenance tag — defaults to 'edm'. |
| source_type | enum | frontend | backend | server | system | apiWhere the write originated. Defaults to 'api'. |
| is_deleted | boolean | Soft-delete flag. Excluded from default list queries. |
| deleted_at | date-time | Stamped when soft-deleted; null otherwise. |
| deleted_by | uuid | Person id who soft-deleted; null otherwise. |
| schema_version | number | Document schema version. Bumped on incompatible writes. |
| project_id | string | Parent project ID. Format: prj-<uuid>. |
| parent_task_id | string | Parent task ID for subtask hierarchies. |
| sprint_id | string | Sprint ID if this task is committed to a sprint. |
| feature_id | string | Feature ID if this task is grouped under a feature. |
| title | string | Short descriptive title for the task. |
| description | string | Detailed task description. Supports Markdown. |
| task_number | string | Human-readable task number scoped to the project key. |
| status | string | Current task status. |
| priority | string | Task priority level. |
| story_points | number | Agile story point estimate. |
| estimated_hours | number | Estimated hours to complete. |
| actual_hours | number | Actual hours logged against this task. |
| assignee_id | string | User ID of the assignee. Format: usr-<uuid>. |
| reviewer_ids | json | User IDs of reviewers. |
| labels | json | Free-form label strings for categorisation. |
| due_date | date-time | Task due date. |
| completed_at | date-time | ISO 8601 timestamp when the task was completed. |
| blocked_by_task_ids | json | Task IDs that must be completed before this task can proceed. |
| duplicates_task_id | string | Task ID that this task duplicates. |
| repository_ref | json | Linked pull request or branch reference. |
| comment_count | number | Number of comments on this task. |
| attachment_refs | json | References to attached files. |
| custom_fields | json | Arbitrary key-value extension fields. |
| tags | json | Flat string tags for filtering and grouping. |
| version | number | Optimistic-concurrency version counter. |
| start_date | date-time | Task start date. |
| estimate_hours | number | Effort estimate in hours. |
API
client.projects.tasks.*Loading manifest…