Finance
- orgId
-
Reichel - Kling
- name
- Finance
- slug
- reichel-kling-finance
- description
- Cursus tepidus aedificium est ventito audio decipio corpus adulescens.
- memberCount
- 28
- createdAt
- updatedAt
Overview
teams / #37
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/37" ); const team = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/teams.d.ts https://example-data.com/types/teams.d.ts
import type { Team } from "./types/teams";
const res = await fetch(
"https://example-data.com/api/v1/teams/37"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/37"
)
team = res.json() Response
{
"id": 37,
"orgId": 14,
"name": "Finance",
"slug": "reichel-kling-finance",
"description": "Cursus tepidus aedificium est ventito audio decipio corpus adulescens.",
"memberCount": 28,
"createdAt": "2024-07-31T06:05:00.459Z",
"updatedAt": "2024-08-04T09:17:51.362Z"
}