teams / #49
- orgId
-
Pouros, Nikolaus and Donnelly
- name
- Infrastructure
- slug
- pouros-nikolaus-and-donnelly-infrastructure
- description
- Civitas avaritia antea tero virgo.
- memberCount
- 24
- createdAt
- updatedAt
Component variants
Related
References
curl -sS \
"https://example-data.com/api/v1/teams/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/49"
);
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/49"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/49"
)
team = res.json() {
"id": 49,
"orgId": 16,
"name": "Infrastructure",
"slug": "pouros-nikolaus-and-donnelly-infrastructure",
"description": "Civitas avaritia antea tero virgo.",
"memberCount": 24,
"createdAt": "2026-03-17T13:54:43.884Z",
"updatedAt": "2026-05-09T11:46:59.892Z"
}