projects / #30
- orgId
-
Predovic, Prosacco and O'Hara
- teamId
- —
- name
- Data Pipeline
- slug
- predovic-prosacco-and-o-hara-data-pipeline
- description
- Thymum tenetur perspiciatis acceptus aduro.
- status
- planning
- startDate
- 2025-08-30
- dueDate
- 2026-09-03
- ownerUserId
- 195
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/30"
);
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/30"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/30"
)
project = res.json() {
"id": 30,
"orgId": 9,
"teamId": null,
"name": "Data Pipeline",
"slug": "predovic-prosacco-and-o-hara-data-pipeline",
"description": "Thymum tenetur perspiciatis acceptus aduro.",
"status": "planning",
"startDate": "2025-08-30",
"dueDate": "2026-09-03",
"ownerUserId": 195,
"createdAt": "2026-03-05T14:18:05.378Z",
"updatedAt": "2026-04-28T10:49:33.379Z"
}