projects / #41
- orgId
-
Kovacek and Sons
- teamId
- teams/35
- name
- Reporting Module
- slug
- kovacek-and-sons-reporting-module
- description
- Correptius libero spiculum urbanus quisquam super eaque exercitationem soluta.
- status
- active
- startDate
- 2025-09-21
- dueDate
- 2026-08-05
- ownerUserId
- 163
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/41"
);
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/41"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/41"
)
project = res.json() {
"id": 41,
"orgId": 13,
"teamId": 35,
"name": "Reporting Module",
"slug": "kovacek-and-sons-reporting-module",
"description": "Correptius libero spiculum urbanus quisquam super eaque exercitationem soluta.",
"status": "active",
"startDate": "2025-09-21",
"dueDate": "2026-08-05",
"ownerUserId": 163,
"createdAt": "2026-04-04T20:03:40.750Z",
"updatedAt": "2026-05-07T07:36:23.485Z"
}