teams / #36
- orgId
-
Reichel - Kling
- name
- Operations
- slug
- reichel-kling-operations
- description
- Delibero contabesco absens repellat officia templum cunabula ascisco dapifer vetus.
- memberCount
- 16
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/36"
);
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/36"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/36"
)
team = res.json() {
"id": 36,
"orgId": 14,
"name": "Operations",
"slug": "reichel-kling-operations",
"description": "Delibero contabesco absens repellat officia templum cunabula ascisco dapifer vetus.",
"memberCount": 16,
"createdAt": "2025-12-01T06:08:54.381Z",
"updatedAt": "2026-04-16T12:56:08.253Z"
}