projects / #22
- orgId
-
Schimmel, Jones and Lind
- teamId
- —
- name
- Notification Service
- slug
- schimmel-jones-and-lind-notification-service
- description
- Dicta totus cura torrens tabgo agnosco alius contigo vilis acsi.
- status
- archived
- startDate
- 2025-10-13
- dueDate
- 2026-08-21
- ownerUserId
- 5
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/22"
);
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/22"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/22"
)
project = res.json() {
"id": 22,
"orgId": 7,
"teamId": null,
"name": "Notification Service",
"slug": "schimmel-jones-and-lind-notification-service",
"description": "Dicta totus cura torrens tabgo agnosco alius contigo vilis acsi.",
"status": "archived",
"startDate": "2025-10-13",
"dueDate": "2026-08-21",
"ownerUserId": 5,
"createdAt": "2025-09-23T16:58:44.449Z",
"updatedAt": "2025-10-05T02:01:37.751Z"
}