projects / #2
- orgId
-
Lakin Group
- teamId
- —
- name
- Data Pipeline
- slug
- lakin-group-data-pipeline
- description
- Tepesco coniecto volaticus super tantillus id administratio ater cohors alo.
- status
- completed
- startDate
- 2026-05-14
- dueDate
- 2026-08-11
- ownerUserId
- 121
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/2"
);
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/2"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/2"
)
project = res.json() {
"id": 2,
"orgId": 1,
"teamId": null,
"name": "Data Pipeline",
"slug": "lakin-group-data-pipeline",
"description": "Tepesco coniecto volaticus super tantillus id administratio ater cohors alo.",
"status": "completed",
"startDate": "2026-05-14",
"dueDate": "2026-08-11",
"ownerUserId": 121,
"createdAt": "2025-09-15T21:52:18.207Z",
"updatedAt": "2025-10-30T19:08:24.435Z"
}