HR
- orgId
-
Corkery - Wunsch
- name
- HR
- slug
- corkery-wunsch-hr
- description
- Cinis bibo corrupti spiculum casso decens vespillo armarium.
- memberCount
- 6
- createdAt
- updatedAt
Overview
teams / #92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/92" ); 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/92"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/92"
)
team = res.json() Response
{
"id": 92,
"orgId": 29,
"name": "HR",
"slug": "corkery-wunsch-hr",
"description": "Cinis bibo corrupti spiculum casso decens vespillo armarium.",
"memberCount": 6,
"createdAt": "2024-08-02T00:50:27.102Z",
"updatedAt": "2025-04-14T23:39:02.885Z"
}