teams / #51
- orgId
-
Ratke - Kub
- name
- Product
- slug
- ratke-kub-product
- description
- Incidunt canis abutor claudeo.
- memberCount
- 7
- createdAt
- updatedAt
Component variants
Small
teams/51 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/51" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/51"
);
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/51"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/51"
)
team = res.json() {
"id": 51,
"orgId": 18,
"name": "Product",
"slug": "ratke-kub-product",
"description": "Incidunt canis abutor claudeo.",
"memberCount": 7,
"createdAt": "2025-10-19T21:46:23.321Z",
"updatedAt": "2026-04-11T21:27:39.734Z"
}