example-data.com

teams / #43

orgId
Lowe and Sons
name
QA
slug
lowe-and-sons-qa
description
Cursim dignissimos acidus deficio.
memberCount
16
createdAt
updatedAt

Component variants

Related

References

Referenced by

curl -sS \
  "https://example-data.com/api/v1/teams/43" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/teams/43"
);
const team = await res.json();
import type { Team } from "https://example-data.com/types/teams.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/teams/43"
);
const team = (await res.json()) as Team;
import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/43"
)
team = res.json()
{
  "id": 43,
  "orgId": 15,
  "name": "QA",
  "slug": "lowe-and-sons-qa",
  "description": "Cursim dignissimos acidus deficio.",
  "memberCount": 16,
  "createdAt": "2025-12-09T17:41:28.428Z",
  "updatedAt": "2026-01-30T07:13:34.561Z"
}
Draftbit