projects / #79
- orgId
-
Cormier, Rogahn and Bogisich
- teamId
- —
- name
- Legacy Migration
- slug
- cormier-rogahn-and-bogisich-legacy-migration
- description
- Utroque administratio constans aegre.
- status
- completed
- startDate
- 2025-07-27
- dueDate
- 2026-06-26
- ownerUserId
- 176
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/79"
);
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/79"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/79"
)
project = res.json() {
"id": 79,
"orgId": 27,
"teamId": null,
"name": "Legacy Migration",
"slug": "cormier-rogahn-and-bogisich-legacy-migration",
"description": "Utroque administratio constans aegre.",
"status": "completed",
"startDate": "2025-07-27",
"dueDate": "2026-06-26",
"ownerUserId": 176,
"createdAt": "2025-08-22T18:13:45.468Z",
"updatedAt": "2025-10-12T17:36:27.049Z"
}