projects / #9
- orgId
-
Mayert LLC
- teamId
- teams/7
- name
- Admin Panel
- slug
- mayert-llc-admin-panel
- description
- Sollers amor vulnus censura.
- status
- archived
- startDate
- 2025-10-27
- dueDate
- 2026-10-30
- ownerUserId
- 37
- createdAt
- updatedAt
Component variants
Small
projects/9 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/9"
);
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/9"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/9"
)
project = res.json() {
"id": 9,
"orgId": 3,
"teamId": 7,
"name": "Admin Panel",
"slug": "mayert-llc-admin-panel",
"description": "Sollers amor vulnus censura.",
"status": "archived",
"startDate": "2025-10-27",
"dueDate": "2026-10-30",
"ownerUserId": 37,
"createdAt": "2025-10-06T09:20:21.329Z",
"updatedAt": "2026-05-14T03:00:49.737Z"
}