projects / #60
- orgId
-
Ziemann LLC
- teamId
- teams/62
- name
- Design System
- slug
- ziemann-llc-design-system
- description
- Esse quod tersus cibo thalassinus corroboro.
- status
- on_hold
- startDate
- 2026-02-19
- dueDate
- —
- ownerUserId
- 98
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/60"
);
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/60"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/60"
)
project = res.json() {
"id": 60,
"orgId": 20,
"teamId": 62,
"name": "Design System",
"slug": "ziemann-llc-design-system",
"description": "Esse quod tersus cibo thalassinus corroboro.",
"status": "on_hold",
"startDate": "2026-02-19",
"dueDate": null,
"ownerUserId": 98,
"createdAt": "2026-02-02T09:41:35.743Z",
"updatedAt": "2026-03-25T16:13:10.396Z"
}