cURL
curl --request GET \ --url https://api.example.com/v1/core/organizations/{orgId}/teams \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "name": "<string>", "organizationId": "<string>", "coachUids": [ "<string>" ], "coachManifest": {}, "memberUids": [ "<string>" ], "memberManifest": {}, "newUserDefaultConversationTypes": [ "<string>" ], "createdAt": "<string>" } ], "cursor": "<string>" }
Returns all teams for an org with pagination
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization ID to fetch teams for
x > 0
Get all teams for an org
Show child attributes
Team ID
Team name
Organization this team belongs to
Array of coach user IDs
Map of coach UIDs to their manifest data
Array of member user IDs
Map of member UIDs to their manifest data
Array of conversation type IDs
ISO 8601 date string
Opaque cursor for pagination