teams / #75
- orgId
-
Prohaska - Wiza
- name
- Legal
- slug
- prohaska-wiza-legal
- description
- Ustilo clarus verto curia cornu ars quos tondeo.
- memberCount
- 14
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/75"
);
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/75"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/75"
)
team = res.json() {
"id": 75,
"orgId": 23,
"name": "Legal",
"slug": "prohaska-wiza-legal",
"description": "Ustilo clarus verto curia cornu ars quos tondeo.",
"memberCount": 14,
"createdAt": "2025-01-02T12:12:06.055Z",
"updatedAt": "2025-05-09T09:10:40.810Z"
}