teams / #88
- orgId
-
Corkery - Wunsch
- name
- Design
- slug
- corkery-wunsch-design
- description
- Vitium venustas comminor coaegresco vitiosus.
- memberCount
- 14
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/88"
);
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/88"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/88"
)
team = res.json() {
"id": 88,
"orgId": 29,
"name": "Design",
"slug": "corkery-wunsch-design",
"description": "Vitium venustas comminor coaegresco vitiosus.",
"memberCount": 14,
"createdAt": "2026-01-22T23:58:47.498Z",
"updatedAt": "2026-05-07T12:26:30.356Z"
}