teams / #27
- orgId
-
Kerluke, Wisozk and Ratke
- name
- Infrastructure
- slug
- kerluke-wisozk-and-ratke-infrastructure
- description
- Votum tripudio crebro accendo voluptatibus.
- memberCount
- 13
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/27"
);
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/27"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/27"
)
team = res.json() {
"id": 27,
"orgId": 10,
"name": "Infrastructure",
"slug": "kerluke-wisozk-and-ratke-infrastructure",
"description": "Votum tripudio crebro accendo voluptatibus.",
"memberCount": 13,
"createdAt": "2025-07-18T06:01:29.756Z",
"updatedAt": "2026-04-10T19:01:31.980Z"
}