teams / #47
- orgId
-
Pouros, Nikolaus and Donnelly
- name
- Finance
- slug
- pouros-nikolaus-and-donnelly-finance
- description
- Facere color agnosco conduco.
- memberCount
- 8
- createdAt
- updatedAt
Component variants
Small
teams/47 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/47"
);
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/47"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/47"
)
team = res.json() {
"id": 47,
"orgId": 16,
"name": "Finance",
"slug": "pouros-nikolaus-and-donnelly-finance",
"description": "Facere color agnosco conduco.",
"memberCount": 8,
"createdAt": "2025-11-10T02:30:36.264Z",
"updatedAt": "2026-04-12T18:28:24.803Z"
}