QA
- orgId
-
Johns, Reinger and Toy
- name
- QA
- slug
- johns-reinger-and-toy-qa
- description
- Debitis tener curso adficio ars.
- memberCount
- 11
- createdAt
- updatedAt
Overview
teams / #60
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/60" ); 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/60"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/60"
)
team = res.json() Response
{
"id": 60,
"orgId": 19,
"name": "QA",
"slug": "johns-reinger-and-toy-qa",
"description": "Debitis tener curso adficio ars.",
"memberCount": 11,
"createdAt": "2024-09-04T11:52:59.578Z",
"updatedAt": "2025-02-23T18:56:27.705Z"
}