Security
- orgId
-
Ziemann LLC
- name
- Security
- slug
- ziemann-llc-security
- description
- Conicio corrumpo ver adulescens suppellex tersus terminatio.
- memberCount
- 24
- createdAt
- updatedAt
Overview
teams / #63
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/63" ); 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/63"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/63"
)
team = res.json() Response
{
"id": 63,
"orgId": 20,
"name": "Security",
"slug": "ziemann-llc-security",
"description": "Conicio corrumpo ver adulescens suppellex tersus terminatio.",
"memberCount": 24,
"createdAt": "2025-05-10T11:19:34.112Z",
"updatedAt": "2025-08-14T04:36:51.403Z"
}