projects / #25
- orgId
-
Schimmel, Jones and Lind
- teamId
- teams/18
- name
- API Migration
- slug
- schimmel-jones-and-lind-api-migration
- description
- Vaco eaque victoria asperiores candidus error alii vos celebrer.
- status
- planning
- startDate
- 2025-08-11
- dueDate
- 2026-08-24
- ownerUserId
- 16
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/25"
);
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/25"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/25"
)
project = res.json() {
"id": 25,
"orgId": 7,
"teamId": 18,
"name": "API Migration",
"slug": "schimmel-jones-and-lind-api-migration",
"description": "Vaco eaque victoria asperiores candidus error alii vos celebrer.",
"status": "planning",
"startDate": "2025-08-11",
"dueDate": "2026-08-24",
"ownerUserId": 16,
"createdAt": "2026-02-27T22:32:54.299Z",
"updatedAt": "2026-05-10T12:42:17.677Z"
}