teams / #73
- orgId
-
Prohaska - Wiza
- name
- Marketing
- slug
- prohaska-wiza-marketing
- description
- Carpo colo tenus.
- memberCount
- 16
- createdAt
- updatedAt
Component variants
Small
teams/73 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/73"
);
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/73"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/73"
)
team = res.json() {
"id": 73,
"orgId": 23,
"name": "Marketing",
"slug": "prohaska-wiza-marketing",
"description": "Carpo colo tenus.",
"memberCount": 16,
"createdAt": "2025-10-15T13:44:31.160Z",
"updatedAt": "2026-02-28T07:41:28.714Z"
}