projects / #10
- orgId
-
Mayert LLC
- teamId
- —
- name
- Website Redesign
- slug
- mayert-llc-website-redesign
- description
- Baiulus adopto delicate color tamen.
- status
- archived
- startDate
- 2025-09-29
- dueDate
- 2026-07-30
- ownerUserId
- 29
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/10"
);
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/10"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/10"
)
project = res.json() {
"id": 10,
"orgId": 3,
"teamId": null,
"name": "Website Redesign",
"slug": "mayert-llc-website-redesign",
"description": "Baiulus adopto delicate color tamen.",
"status": "archived",
"startDate": "2025-09-29",
"dueDate": "2026-07-30",
"ownerUserId": 29,
"createdAt": "2025-06-03T05:59:54.238Z",
"updatedAt": "2026-04-22T21:11:57.888Z"
}