teams / #52
- orgId
-
Ratke - Kub
- name
- Research
- slug
- ratke-kub-research
- description
- Libero bibo tergo demum debeo tenetur sono correptius.
- memberCount
- 11
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/52"
);
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/52"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/52"
)
team = res.json() {
"id": 52,
"orgId": 18,
"name": "Research",
"slug": "ratke-kub-research",
"description": "Libero bibo tergo demum debeo tenetur sono correptius.",
"memberCount": 11,
"createdAt": "2025-05-30T23:46:37.439Z",
"updatedAt": "2025-10-27T11:22:26.289Z"
}