projects / #47
- orgId
-
Pouros, Nikolaus and Donnelly
- teamId
- —
- name
- API Migration
- slug
- pouros-nikolaus-and-donnelly-api-migration
- description
- Color talus voluntarius iste appositus commemoro collum.
- status
- active
- startDate
- 2025-10-12
- dueDate
- 2026-10-20
- ownerUserId
- 60
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/47"
);
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/47"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/47"
)
project = res.json() {
"id": 47,
"orgId": 16,
"teamId": null,
"name": "API Migration",
"slug": "pouros-nikolaus-and-donnelly-api-migration",
"description": "Color talus voluntarius iste appositus commemoro collum.",
"status": "active",
"startDate": "2025-10-12",
"dueDate": "2026-10-20",
"ownerUserId": 60,
"createdAt": "2026-05-12T19:02:09.227Z",
"updatedAt": "2026-05-16T11:56:39.430Z"
}