teams / #83
- orgId
-
Cormier, Rogahn and Bogisich
- name
- Product
- slug
- cormier-rogahn-and-bogisich-product
- description
- Tendo subnecto vacuus.
- memberCount
- 20
- createdAt
- updatedAt
Component variants
Small
teams/83 Related
References
curl -sS \
"https://example-data.com/api/v1/teams/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/83"
);
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/83"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/83"
)
team = res.json() {
"id": 83,
"orgId": 27,
"name": "Product",
"slug": "cormier-rogahn-and-bogisich-product",
"description": "Tendo subnecto vacuus.",
"memberCount": 20,
"createdAt": "2025-02-10T13:41:03.590Z",
"updatedAt": "2025-04-23T11:22:16.715Z"
}