Customer Success
- orgId
-
Toy and Sons
- name
- Customer Success
- slug
- toy-and-sons-customer-success
- description
- Sed amor vorax vomito tantillus.
- memberCount
- 9
- createdAt
- updatedAt
Overview
teams / #65
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/65" ); 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/65"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/65"
)
team = res.json() Response
{
"id": 65,
"orgId": 21,
"name": "Customer Success",
"slug": "toy-and-sons-customer-success",
"description": "Sed amor vorax vomito tantillus.",
"memberCount": 9,
"createdAt": "2025-12-15T19:22:15.007Z",
"updatedAt": "2026-01-02T02:52:32.925Z"
}