projects / #11
- orgId
-
Mayert LLC
- teamId
- teams/10
- name
- Notification Service
- slug
- mayert-llc-notification-service
- description
- Degusto statim vox aedificium nam stips vespillo magnam venustas.
- status
- active
- startDate
- 2026-04-30
- dueDate
- —
- ownerUserId
- 232
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/11"
);
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/11"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/11"
)
project = res.json() {
"id": 11,
"orgId": 3,
"teamId": 10,
"name": "Notification Service",
"slug": "mayert-llc-notification-service",
"description": "Degusto statim vox aedificium nam stips vespillo magnam venustas.",
"status": "active",
"startDate": "2026-04-30",
"dueDate": null,
"ownerUserId": 232,
"createdAt": "2026-04-21T12:46:48.119Z",
"updatedAt": "2026-04-27T01:10:25.593Z"
}