projects / #76
- orgId
-
Altenwerth - Corkery
- teamId
- teams/81
- name
- Legacy Migration
- slug
- altenwerth-corkery-legacy-migration
- description
- Creator vesco vindico.
- status
- on_hold
- startDate
- 2026-02-20
- dueDate
- —
- ownerUserId
- 145
- createdAt
- updatedAt
Component variants
Small
projects/76 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/76"
);
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/76"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/76"
)
project = res.json() {
"id": 76,
"orgId": 26,
"teamId": 81,
"name": "Legacy Migration",
"slug": "altenwerth-corkery-legacy-migration",
"description": "Creator vesco vindico.",
"status": "on_hold",
"startDate": "2026-02-20",
"dueDate": null,
"ownerUserId": 145,
"createdAt": "2025-06-13T17:04:08.527Z",
"updatedAt": "2026-02-26T09:07:28.273Z"
}