teams / #40
- orgId
-
Reichel - Kling
- name
- Platform
- slug
- reichel-kling-platform
- description
- Via caterva cunabula demoror soleo admoveo coma allatus derideo arma.
- memberCount
- 15
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/40" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/40"
);
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/40"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/40"
)
team = res.json() {
"id": 40,
"orgId": 14,
"name": "Platform",
"slug": "reichel-kling-platform",
"description": "Via caterva cunabula demoror soleo admoveo coma allatus derideo arma.",
"memberCount": 15,
"createdAt": "2026-03-19T18:45:04.796Z",
"updatedAt": "2026-05-09T20:17:45.900Z"
}