projects / #53
- orgId
-
Ratke - Kub
- teamId
- teams/53
- name
- Customer Portal
- slug
- ratke-kub-customer-portal
- description
- Totidem spoliatio voluptas vilis.
- status
- completed
- startDate
- 2025-12-21
- dueDate
- —
- ownerUserId
- 195
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/53"
);
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/53"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/53"
)
project = res.json() {
"id": 53,
"orgId": 18,
"teamId": 53,
"name": "Customer Portal",
"slug": "ratke-kub-customer-portal",
"description": "Totidem spoliatio voluptas vilis.",
"status": "completed",
"startDate": "2025-12-21",
"dueDate": null,
"ownerUserId": 195,
"createdAt": "2026-03-31T21:49:12.622Z",
"updatedAt": "2026-05-19T11:00:02.929Z"
}