teams / #22
- orgId
-
Predovic, Prosacco and O'Hara
- name
- Analytics
- slug
- predovic-prosacco-and-o-hara-analytics
- description
- Enim video audacia uter.
- memberCount
- 13
- createdAt
- updatedAt
Component variants
Small
teams/22 Related
References
curl -sS \
"https://example-data.com/api/v1/teams/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/22"
);
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/22"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/22"
)
team = res.json() {
"id": 22,
"orgId": 9,
"name": "Analytics",
"slug": "predovic-prosacco-and-o-hara-analytics",
"description": "Enim video audacia uter.",
"memberCount": 13,
"createdAt": "2025-05-01T04:01:38.043Z",
"updatedAt": "2025-05-23T10:11:35.858Z"
}