projects / #29
- orgId
-
Predovic, Prosacco and O'Hara
- teamId
- teams/23
- name
- Admin Panel
- slug
- predovic-prosacco-and-o-hara-admin-panel
- description
- Arma una harum demitto succedo summisse.
- status
- on_hold
- startDate
- 2026-02-05
- dueDate
- —
- ownerUserId
- 204
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/29"
);
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/29"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/29"
)
project = res.json() {
"id": 29,
"orgId": 9,
"teamId": 23,
"name": "Admin Panel",
"slug": "predovic-prosacco-and-o-hara-admin-panel",
"description": "Arma una harum demitto succedo summisse.",
"status": "on_hold",
"startDate": "2026-02-05",
"dueDate": null,
"ownerUserId": 204,
"createdAt": "2026-02-07T00:40:20.711Z",
"updatedAt": "2026-03-30T07:23:16.792Z"
}