example-data.com

teams / #15

orgId
Funk, Renner and Grady
name
Customer Success
slug
funk-renner-and-grady-customer-success
description
Verumtamen stabilis ait.
memberCount
21
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/15"
)
team = res.json()
{
  "id": 15,
  "orgId": 4,
  "name": "Customer Success",
  "slug": "funk-renner-and-grady-customer-success",
  "description": "Verumtamen stabilis ait.",
  "memberCount": 21,
  "createdAt": "2025-06-22T21:26:17.281Z",
  "updatedAt": "2026-04-02T23:13:38.113Z"
}
Draftbit