projects / #65
- orgId
-
Toy and Sons
- teamId
- teams/66
- name
- Design System
- slug
- toy-and-sons-design-system
- description
- Talus atqui tabesco clibanus.
- status
- active
- startDate
- 2026-03-18
- dueDate
- 2026-06-04
- ownerUserId
- 7
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/65"
);
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/65"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/65"
)
project = res.json() {
"id": 65,
"orgId": 21,
"teamId": 66,
"name": "Design System",
"slug": "toy-and-sons-design-system",
"description": "Talus atqui tabesco clibanus.",
"status": "active",
"startDate": "2026-03-18",
"dueDate": "2026-06-04",
"ownerUserId": 7,
"createdAt": "2026-04-03T23:38:51.573Z",
"updatedAt": "2026-04-15T19:09:40.203Z"
}