example-data.com

teams / #90

orgId
Corkery - Wunsch
name
Customer Success
slug
corkery-wunsch-customer-success
description
Triumphus volva absens decor testimonium stabilis balbus arcesso.
memberCount
13
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/90"
)
team = res.json()
{
  "id": 90,
  "orgId": 29,
  "name": "Customer Success",
  "slug": "corkery-wunsch-customer-success",
  "description": "Triumphus volva absens decor testimonium stabilis balbus arcesso.",
  "memberCount": 13,
  "createdAt": "2025-03-17T18:53:55.682Z",
  "updatedAt": "2026-01-27T06:59:15.878Z"
}
Draftbit