teams / #16
- orgId
-
McGlynn, Bogisich and Toy
- name
- Sales
- slug
- mcglynn-bogisich-and-toy-sales
- description
- Auditor custodia eligendi arbor cribro victoria tamen terminatio valeo blandior.
- memberCount
- 15
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/teams/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/16"
);
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/16"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/16"
)
team = res.json() {
"id": 16,
"orgId": 5,
"name": "Sales",
"slug": "mcglynn-bogisich-and-toy-sales",
"description": "Auditor custodia eligendi arbor cribro victoria tamen terminatio valeo blandior.",
"memberCount": 15,
"createdAt": "2025-08-17T01:52:32.672Z",
"updatedAt": "2026-03-03T01:29:25.917Z"
}