teams / #6
- orgId
-
Cremin - Kautzer
- name
- HR
- slug
- cremin-kautzer-hr
- description
- Volutabrum arma voluptatibus sublime color curis aegrus suggero harum inventore.
- memberCount
- 11
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/6"
);
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/6"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/6"
)
team = res.json() {
"id": 6,
"orgId": 2,
"name": "HR",
"slug": "cremin-kautzer-hr",
"description": "Volutabrum arma voluptatibus sublime color curis aegrus suggero harum inventore.",
"memberCount": 11,
"createdAt": "2024-07-13T03:55:11.985Z",
"updatedAt": "2025-07-21T19:53:25.880Z"
}