GET
/
v1
/
core
/
organizations
/
{orgId}
/
teams
Get all teams for an org
curl --request GET \
  --url https://us-central1-siro-prod.cloudfunctions.net/api-externalApi/v1/core/organizations/{orgId}/teams
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "organizationId": "<string>",
      "coachUids": [
        "<string>"
      ],
      "coachManifest": {},
      "memberUids": [
        "<string>"
      ],
      "memberManifest": {},
      "newUserDefaultConversationTypes": [
        "<string>"
      ],
      "createdAt": "<string>"
    }
  ],
  "cursor": "<string>"
}

Path Parameters

orgId
string
required

Organization ID to fetch teams for

Query Parameters

pageSize
integer
Required range: x > 0
cursor
string

Response

200 - application/json

Get all teams for an org

The response is of type object.