teams / #65
- orgId
-
Toy and Sons
- name
- Customer Success
- slug
- toy-and-sons-customer-success
- description
- Sed amor vorax vomito tantillus.
- memberCount
- 9
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/65"
);
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/65"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/65"
)
team = res.json() {
"id": 65,
"orgId": 21,
"name": "Customer Success",
"slug": "toy-and-sons-customer-success",
"description": "Sed amor vorax vomito tantillus.",
"memberCount": 9,
"createdAt": "2025-12-15T19:22:15.007Z",
"updatedAt": "2026-01-02T02:52:32.925Z"
}