example-data.com

teams / #60

orgId
Johns, Reinger and Toy
name
QA
slug
johns-reinger-and-toy-qa
description
Debitis tener curso adficio ars.
memberCount
11
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/60"
)
team = res.json()
{
  "id": 60,
  "orgId": 19,
  "name": "QA",
  "slug": "johns-reinger-and-toy-qa",
  "description": "Debitis tener curso adficio ars.",
  "memberCount": 11,
  "createdAt": "2024-09-04T11:52:59.578Z",
  "updatedAt": "2025-02-23T18:56:27.705Z"
}
Draftbit