projects / #23
- orgId
-
Schimmel, Jones and Lind
- teamId
- —
- name
- Performance Optimization
- slug
- schimmel-jones-and-lind-performance-optimization
- description
- Esse tertius averto tollo tergo tabula defaeco crepusculum sursum deripio.
- status
- active
- startDate
- 2025-09-30
- dueDate
- —
- ownerUserId
- 23
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/23"
);
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/23"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/23"
)
project = res.json() {
"id": 23,
"orgId": 7,
"teamId": null,
"name": "Performance Optimization",
"slug": "schimmel-jones-and-lind-performance-optimization",
"description": "Esse tertius averto tollo tergo tabula defaeco crepusculum sursum deripio.",
"status": "active",
"startDate": "2025-09-30",
"dueDate": null,
"ownerUserId": 23,
"createdAt": "2025-08-13T19:50:09.180Z",
"updatedAt": "2025-11-15T23:18:58.556Z"
}