teams / #26
- orgId
-
Kerluke, Wisozk and Ratke
- name
- Marketing
- slug
- kerluke-wisozk-and-ratke-marketing
- description
- Sustineo desolo vacuus.
- memberCount
- 4
- createdAt
- updatedAt
Component variants
Small
teams/26 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/26"
);
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/26"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/26"
)
team = res.json() {
"id": 26,
"orgId": 10,
"name": "Marketing",
"slug": "kerluke-wisozk-and-ratke-marketing",
"description": "Sustineo desolo vacuus.",
"memberCount": 4,
"createdAt": "2025-03-25T05:55:22.755Z",
"updatedAt": "2026-02-10T22:47:07.240Z"
}