BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Organizations

List teams

Lists all teams within the given organization (sorted by name), each with a member count. orgId comes from the id field of an organization object returned by GET /orgs — call that endpoint first to see which organizations you have access to. Only an org_admin of that organization may call this.

GET/api/v1/orgs/:orgId/teams

Authorizations

Authorizationrequired
string · header

API key as bearer token in the Authorization header.

Path parameters

orgIdrequired
string

The organization ID, from a GET /orgs response.

GET /api/v1/orgs/:orgId/teams
curl https://bazaarlink.ai/api/v1/orgs/org_abc123/teams \
  -H "Authorization: Bearer $BAZAARLINK_API_KEY"
Response examples

Success. teams[] is sorted by name, and _count.members is that team's current member count.

{
  "teams": [
    {
      "id": "team_abc123",
      "name": "Engineering",
      "costCenterCode": "ENG-01",
      "monthlyBudget": 500,
      "createdAt": "2026-06-01T00:00:00.000Z",
      "_count": {
        "members": 6
      }
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
List teams — BazaarLink API