example-data.com

teams / #50

orgId
Flatley Group
name
DevOps
slug
flatley-group-devops
description
Comprehendo arbustum atrox confido ater tollo quasi appello coerceo vociferor.
memberCount
22
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/teams/50"
)
team = res.json()
{
  "id": 50,
  "orgId": 17,
  "name": "DevOps",
  "slug": "flatley-group-devops",
  "description": "Comprehendo arbustum atrox confido ater tollo quasi appello coerceo vociferor.",
  "memberCount": 22,
  "createdAt": "2025-06-19T07:02:25.694Z",
  "updatedAt": "2025-11-14T08:17:00.495Z"
}
Draftbit