projects / #78
- orgId
-
Cormier, Rogahn and Bogisich
- teamId
- —
- name
- Payment Gateway
- slug
- cormier-rogahn-and-bogisich-payment-gateway
- description
- Delectus succedo cavus apostolus cohors amitto.
- status
- completed
- startDate
- 2025-06-06
- dueDate
- 2026-10-30
- ownerUserId
- 57
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/78"
);
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/78"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/78"
)
project = res.json() {
"id": 78,
"orgId": 27,
"teamId": null,
"name": "Payment Gateway",
"slug": "cormier-rogahn-and-bogisich-payment-gateway",
"description": "Delectus succedo cavus apostolus cohors amitto.",
"status": "completed",
"startDate": "2025-06-06",
"dueDate": "2026-10-30",
"ownerUserId": 57,
"createdAt": "2026-03-26T17:28:40.540Z",
"updatedAt": "2026-05-20T01:09:29.352Z"
}