example-data.com

teams / #41

orgId
Lowe and Sons
name
Customer Success
slug
lowe-and-sons-customer-success
description
Provident enim reprehenderit conforto comedo tenetur bestia contra benigne.
memberCount
9
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/teams/41"
)
team = res.json()
{
  "id": 41,
  "orgId": 15,
  "name": "Customer Success",
  "slug": "lowe-and-sons-customer-success",
  "description": "Provident enim reprehenderit conforto comedo tenetur bestia contra benigne.",
  "memberCount": 9,
  "createdAt": "2024-11-12T01:14:40.051Z",
  "updatedAt": "2026-02-21T21:34:48.851Z"
}
Draftbit