projects / #24
- orgId
-
Schimmel, Jones and Lind
- teamId
- teams/18
- name
- Authentication Revamp
- slug
- schimmel-jones-and-lind-authentication-revamp
- description
- Deprecator autem sumo vivo aveho vae annus.
- status
- completed
- startDate
- 2026-01-15
- dueDate
- 2026-09-01
- ownerUserId
- 204
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/projects/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/projects/24"
);
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/24"
);
const project = (await res.json()) as Project;import requests
res = requests.get(
"https://example-data.com/api/v1/projects/24"
)
project = res.json() {
"id": 24,
"orgId": 7,
"teamId": 18,
"name": "Authentication Revamp",
"slug": "schimmel-jones-and-lind-authentication-revamp",
"description": "Deprecator autem sumo vivo aveho vae annus.",
"status": "completed",
"startDate": "2026-01-15",
"dueDate": "2026-09-01",
"ownerUserId": 204,
"createdAt": "2025-12-22T19:42:47.686Z",
"updatedAt": "2026-02-07T13:42:57.792Z"
}