projects / #31
- orgId
-
Kerluke, Wisozk and Ratke
- teamId
- teams/26
- name
- API Migration
- slug
- kerluke-wisozk-and-ratke-api-migration
- description
- Cursus vomer vestrum valens saepe.
- status
- archived
- startDate
- 2026-02-09
- dueDate
- 2026-08-12
- ownerUserId
- 125
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/31"
);
const project = await res.json();import type { Project } from "https://example-data.com/types/projects.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/projects/31"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/31"
)
project = res.json() {
"id": 31,
"orgId": 10,
"teamId": 26,
"name": "API Migration",
"slug": "kerluke-wisozk-and-ratke-api-migration",
"description": "Cursus vomer vestrum valens saepe.",
"status": "archived",
"startDate": "2026-02-09",
"dueDate": "2026-08-12",
"ownerUserId": 125,
"createdAt": "2025-10-04T20:34:13.913Z",
"updatedAt": "2026-05-02T15:00:45.044Z"
}