teams / #61
- orgId
-
Ziemann LLC
- name
- Platform
- slug
- ziemann-llc-platform
- description
- Abstergo spoliatio crapula strenuus defessus bis conturbo ascit.
- memberCount
- 5
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/61"
);
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/61"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/61"
)
team = res.json() {
"id": 61,
"orgId": 20,
"name": "Platform",
"slug": "ziemann-llc-platform",
"description": "Abstergo spoliatio crapula strenuus defessus bis conturbo ascit.",
"memberCount": 5,
"createdAt": "2024-09-11T19:12:24.240Z",
"updatedAt": "2025-06-04T13:44:50.281Z"
}