Rensei docs

List teams in the authenticated org.

Returns every team in the authenticated org, each with a member count. Always scoped to the authenticated org; a caller-supplied orgId is ignored to prevent cross-tenant reads.

GET
/api/org/teams

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Response Body

application/json

curl -X GET "https://example.com/api/org/teams"
{
  "teams": [
    {
      "id": "string",
      "name": "string",
      "slug": "string",
      "orgId": "string",
      "memberCount": 0,
      "property1": null,
      "property2": null
    }
  ]
}
Empty
Empty