Project
/api/v1/edm-projects/projectsA delivery effort with a start, end, and team.
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. |
| owner_id | string | User ID of the project manager. Format: usr-<uuid>. |
| name | string | Human-readable project name. |
| key | string | Short project code used as a prefix for task numbers. |
| kind | string | Project classification. |
| account_id | string | Account ID if this is a client-facing project. |
| deal_id | string | Source deal ID, if this project was created from a deal. |
| status | string | Current project lifecycle status. |
| priority | string | Project priority level. |
| start_date | date-time | Planned project start date. |
| end_date | date-time | Planned project end date. |
| actual_start_date | date-time | Actual project start date. |
| actual_end_date | date-time | Actual project completion date. |
| budget | json | Budget tracking for the project. |
| member_ids | json | User IDs of project members. Format: usr-<uuid>. |
| members | json | Project members with their roles. |
| group_ids | json | Group IDs of owning teams. Format: grp-<uuid>. |
| repository_refs | json | Linked source code repositories. |
| description | string | Free-text project description. |
| objectives | json | Free-text project goals. |
| linked_objective_ids | json | Cross-links to OKR Objective records. Format: obj-<uuid>. |
| attachment_refs | json | References to attached documents or files. |
| custom_fields | json | Arbitrary key-value extension fields. |
| tags | json | Flat string tags for filtering and grouping. |
| version | number | Optimistic-concurrency version counter. |
| due_date | date-time | Project due date. |
API
client.projects.projects.*Loading manifest…