teams / #35
- orgId
-
Kovacek and Sons
- name
- Finance
- slug
- kovacek-and-sons-finance
- description
- Ab vilicus pecto testimonium acies viriliter deduco.
- memberCount
- 12
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/35"
);
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/35"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/35"
)
team = res.json() {
"id": 35,
"orgId": 13,
"name": "Finance",
"slug": "kovacek-and-sons-finance",
"description": "Ab vilicus pecto testimonium acies viriliter deduco.",
"memberCount": 12,
"createdAt": "2025-12-13T15:55:55.044Z",
"updatedAt": "2025-12-15T14:59:11.003Z"
}