teams / #62
- orgId
-
Ziemann LLC
- name
- Operations
- slug
- ziemann-llc-operations
- description
- Dedecor cognomen clarus articulus campana.
- memberCount
- 13
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/62"
);
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/62"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/62"
)
team = res.json() {
"id": 62,
"orgId": 20,
"name": "Operations",
"slug": "ziemann-llc-operations",
"description": "Dedecor cognomen clarus articulus campana.",
"memberCount": 13,
"createdAt": "2024-10-07T07:04:08.210Z",
"updatedAt": "2025-11-15T17:15:35.057Z"
}