teams / #53
- orgId
-
Ratke - Kub
- name
- Infrastructure
- slug
- ratke-kub-infrastructure
- description
- Commodo tersus pecco tracto quisquam victoria umbra clementia peior.
- memberCount
- 10
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/53"
);
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/53"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/53"
)
team = res.json() {
"id": 53,
"orgId": 18,
"name": "Infrastructure",
"slug": "ratke-kub-infrastructure",
"description": "Commodo tersus pecco tracto quisquam victoria umbra clementia peior.",
"memberCount": 10,
"createdAt": "2026-04-05T18:50:44.564Z",
"updatedAt": "2026-05-05T15:04:05.705Z"
}