projects / #52
- orgId
-
Ratke - Kub
- teamId
- teams/51
- name
- API Migration
- slug
- ratke-kub-api-migration
- description
- Custodia advenio statim doloremque circumvenio harum arbitro.
- status
- active
- startDate
- 2025-10-21
- dueDate
- 2026-10-28
- ownerUserId
- 184
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/52"
);
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/52"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/52"
)
project = res.json() {
"id": 52,
"orgId": 18,
"teamId": 51,
"name": "API Migration",
"slug": "ratke-kub-api-migration",
"description": "Custodia advenio statim doloremque circumvenio harum arbitro.",
"status": "active",
"startDate": "2025-10-21",
"dueDate": "2026-10-28",
"ownerUserId": 184,
"createdAt": "2025-11-24T07:50:06.263Z",
"updatedAt": "2026-04-24T19:42:36.426Z"
}