projects / #35
- orgId
-
Krajcik Group
- teamId
- —
- name
- Dashboard Overhaul
- slug
- krajcik-group-dashboard-overhaul
- description
- Pecco aliqua nihil abbas accendo rerum demitto.
- status
- archived
- startDate
- 2025-06-22
- dueDate
- —
- ownerUserId
- 185
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/35"
);
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/35"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/35"
)
project = res.json() {
"id": 35,
"orgId": 11,
"teamId": null,
"name": "Dashboard Overhaul",
"slug": "krajcik-group-dashboard-overhaul",
"description": "Pecco aliqua nihil abbas accendo rerum demitto.",
"status": "archived",
"startDate": "2025-06-22",
"dueDate": null,
"ownerUserId": 185,
"createdAt": "2026-03-26T20:37:35.438Z",
"updatedAt": "2026-04-06T20:57:06.457Z"
}