teams / #78
- orgId
-
Prohaska Inc
- name
- Design
- slug
- prohaska-inc-design
- description
- Tibi deficio demergo culpo basium abeo tergiversatio cervus attollo.
- memberCount
- 10
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/78"
);
const team = await res.json();import type { Team } from "https://example-data.com/types/teams.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/teams/78"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/78"
)
team = res.json() {
"id": 78,
"orgId": 24,
"name": "Design",
"slug": "prohaska-inc-design",
"description": "Tibi deficio demergo culpo basium abeo tergiversatio cervus attollo.",
"memberCount": 10,
"createdAt": "2024-10-31T22:14:37.288Z",
"updatedAt": "2025-10-27T11:47:00.114Z"
}