projects / #80
- orgId
-
Thompson Group
- teamId
- —
- name
- User Onboarding
- slug
- thompson-group-user-onboarding
- description
- Cupressus civis corpus iure adimpleo clam decens.
- status
- planning
- startDate
- 2025-12-15
- dueDate
- —
- ownerUserId
- 38
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/80"
);
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/80"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/80"
)
project = res.json() {
"id": 80,
"orgId": 28,
"teamId": null,
"name": "User Onboarding",
"slug": "thompson-group-user-onboarding",
"description": "Cupressus civis corpus iure adimpleo clam decens.",
"status": "planning",
"startDate": "2025-12-15",
"dueDate": null,
"ownerUserId": 38,
"createdAt": "2025-10-04T11:59:53.289Z",
"updatedAt": "2026-02-24T10:41:33.151Z"
}