projects / #28
- orgId
-
Predovic, Prosacco and O'Hara
- teamId
- teams/23
- name
- Search Integration
- slug
- predovic-prosacco-and-o-hara-search-integration
- description
- Adulatio vespillo cattus attero sollicito conventus aliquid vinco.
- status
- on_hold
- startDate
- 2025-05-24
- dueDate
- 2026-07-04
- ownerUserId
- 126
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/28"
);
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/28"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/28"
)
project = res.json() {
"id": 28,
"orgId": 9,
"teamId": 23,
"name": "Search Integration",
"slug": "predovic-prosacco-and-o-hara-search-integration",
"description": "Adulatio vespillo cattus attero sollicito conventus aliquid vinco.",
"status": "on_hold",
"startDate": "2025-05-24",
"dueDate": "2026-07-04",
"ownerUserId": 126,
"createdAt": "2025-06-19T17:03:21.812Z",
"updatedAt": "2025-09-07T11:53:35.000Z"
}