projects / #42
- orgId
-
Kovacek and Sons
- teamId
- teams/35
- name
- Website Redesign
- slug
- kovacek-and-sons-website-redesign
- description
- Confido super totidem careo.
- status
- on_hold
- startDate
- 2026-04-22
- dueDate
- 2026-11-09
- ownerUserId
- 24
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/42"
);
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/42"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/42"
)
project = res.json() {
"id": 42,
"orgId": 13,
"teamId": 35,
"name": "Website Redesign",
"slug": "kovacek-and-sons-website-redesign",
"description": "Confido super totidem careo.",
"status": "on_hold",
"startDate": "2026-04-22",
"dueDate": "2026-11-09",
"ownerUserId": 24,
"createdAt": "2025-08-09T16:26:21.887Z",
"updatedAt": "2026-04-04T05:20:06.390Z"
}