BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Organizations

List members

Lists all members of the given organization (sorted by join date), each with basic user info and their assigned team, if any. Only an org_admin of that organization may call this.

GET/api/v1/orgs/:orgId/members

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/members
curl https://bazaarlink.ai/api/v1/orgs/org_abc123/members \
  -H "Authorization: Bearer $BAZAARLINK_API_KEY"
Response examples

Success. members[] is sorted by join date; team is null when the member has no assigned team.

{
  "members": [
    {
      "id": "orgmem_abc123",
      "role": "member",
      "monthlyBudget": 100,
      "joinedAt": "2026-04-01T00:00:00.000Z",
      "teamId": "team_abc123",
      "user": {
        "id": "usr_xyz789",
        "name": "Jane Doe",
        "email": "jane@acme.com"
      },
      "team": {
        "id": "team_abc123",
        "name": "Engineering"
      }
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
List members — BazaarLink API