teams / #34
- orgId
-
Swift - Lakin
- name
- QA
- slug
- swift-lakin-qa
- description
- Degenero absque arbor aetas clam auctor baiulus clarus.
- memberCount
- 8
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/34"
);
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/34"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/34"
)
team = res.json() {
"id": 34,
"orgId": 12,
"name": "QA",
"slug": "swift-lakin-qa",
"description": "Degenero absque arbor aetas clam auctor baiulus clarus.",
"memberCount": 8,
"createdAt": "2024-09-15T09:37:44.124Z",
"updatedAt": "2026-05-14T07:18:14.600Z"
}