Sprint
/api/v1/edm-projects/sprintsA time-boxed iteration of work in a Project.
listgetcreateupdatecloseSchema
| 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. |
| name | string | Human-readable sprint name. |
| week_key | string | ISO 8601 week identifier (e.g., '2026-W22'). |
| start_date | date-time | Sprint start date. |
| end_date | date-time | Sprint end date. |
| status | string | Current sprint status. |
| goal | string | Sprint goal statement. |
| committed_points | number | Story points committed at sprint start. |
| completed_points | number | Story points completed by the end of the sprint. |
| task_ids | json | Task IDs committed to this sprint. |
| feature_ids | json | Feature IDs committed to this sprint. |
| lead_id | string | User ID of the sprint lead. Format: usr-<uuid>. |
| retrospective | json | Sprint retrospective notes. Populated after the sprint completes. |
| ai_plan | string | LLM-generated sprint plan. |
| tags | json | Flat string tags for filtering and grouping. |
| version | number | Optimistic-concurrency version counter. |
| starts_at | date-time | Sprint start timestamp. |
| ends_at | date-time | Sprint end timestamp. |
API
client.projects.sprints.*Loading manifest…