example-data.com

teams / #92

orgId
Corkery - Wunsch
name
HR
slug
corkery-wunsch-hr
description
Cinis bibo corrupti spiculum casso decens vespillo armarium.
memberCount
6
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/92"
)
team = res.json()
{
  "id": 92,
  "orgId": 29,
  "name": "HR",
  "slug": "corkery-wunsch-hr",
  "description": "Cinis bibo corrupti spiculum casso decens vespillo armarium.",
  "memberCount": 6,
  "createdAt": "2024-08-02T00:50:27.102Z",
  "updatedAt": "2025-04-14T23:39:02.885Z"
}
Draftbit