projects / #57
- orgId
-
Johns, Reinger and Toy
- teamId
- —
- name
- User Onboarding
- slug
- johns-reinger-and-toy-user-onboarding
- description
- Nostrum aegre animi vita spero.
- status
- planning
- startDate
- 2026-05-05
- dueDate
- 2026-06-15
- ownerUserId
- 8
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/57"
);
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/57"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/57"
)
project = res.json() {
"id": 57,
"orgId": 19,
"teamId": null,
"name": "User Onboarding",
"slug": "johns-reinger-and-toy-user-onboarding",
"description": "Nostrum aegre animi vita spero.",
"status": "planning",
"startDate": "2026-05-05",
"dueDate": "2026-06-15",
"ownerUserId": 8,
"createdAt": "2025-11-29T20:35:42.278Z",
"updatedAt": "2026-02-11T03:19:05.840Z"
}