projects / #1
- orgId
-
Lakin Group
- teamId
- teams/4
- name
- Performance Optimization
- slug
- lakin-group-performance-optimization
- description
- Vulpes vestrum beatae taceo supplanto trucido vergo.
- status
- on_hold
- startDate
- 2025-06-25
- dueDate
- —
- ownerUserId
- 71
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/1"
);
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/1"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/1"
)
project = res.json() {
"id": 1,
"orgId": 1,
"teamId": 4,
"name": "Performance Optimization",
"slug": "lakin-group-performance-optimization",
"description": "Vulpes vestrum beatae taceo supplanto trucido vergo.",
"status": "on_hold",
"startDate": "2025-06-25",
"dueDate": null,
"ownerUserId": 71,
"createdAt": "2025-05-31T21:48:05.378Z",
"updatedAt": "2026-01-10T18:30:17.147Z"
}