example-data.com

teams / #8

orgId
Mayert LLC
name
Legal
slug
mayert-llc-legal
description
Tergiversatio dolore caterva atqui vulariter consectetur ascisco amor.
memberCount
8
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/teams/8" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/teams/8"
);
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/8"
);
const team = (await res.json()) as Team;
import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/8"
)
team = res.json()
{
  "id": 8,
  "orgId": 3,
  "name": "Legal",
  "slug": "mayert-llc-legal",
  "description": "Tergiversatio dolore caterva atqui vulariter consectetur ascisco amor.",
  "memberCount": 8,
  "createdAt": "2025-12-08T03:29:54.192Z",
  "updatedAt": "2026-05-09T05:58:47.284Z"
}
Draftbit