Operations
- orgId
-
Ziemann LLC
- name
- Operations
- slug
- ziemann-llc-operations
- description
- Dedecor cognomen clarus articulus campana.
- memberCount
- 13
- createdAt
- updatedAt
Overview
teams / #62
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/62" ); 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/62"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/62"
)
team = res.json() Response
{
"id": 62,
"orgId": 20,
"name": "Operations",
"slug": "ziemann-llc-operations",
"description": "Dedecor cognomen clarus articulus campana.",
"memberCount": 13,
"createdAt": "2024-10-07T07:04:08.210Z",
"updatedAt": "2025-11-15T17:15:35.057Z"
}