projects / #4
- orgId
-
Lakin Group
- teamId
- teams/4
- name
- Dashboard Overhaul
- slug
- lakin-group-dashboard-overhaul
- description
- Sui caecus pecco carcer votum carcer repellat arbitro ab condico.
- status
- on_hold
- startDate
- 2026-02-10
- dueDate
- —
- ownerUserId
- 202
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/4"
);
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/4"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/4"
)
project = res.json() {
"id": 4,
"orgId": 1,
"teamId": 4,
"name": "Dashboard Overhaul",
"slug": "lakin-group-dashboard-overhaul",
"description": "Sui caecus pecco carcer votum carcer repellat arbitro ab condico.",
"status": "on_hold",
"startDate": "2026-02-10",
"dueDate": null,
"ownerUserId": 202,
"createdAt": "2026-03-20T13:53:26.177Z",
"updatedAt": "2026-03-20T15:48:02.939Z"
}