Sazabi
APITeams

List team members

GET
/teams/{teamId}/members

List a team's active members.

Path Parameters

teamId*string

Team to list members for.

Formatuuid

Query Parameters

organizationId?string

Organization to operate on. Auto-filled from CLI and SDK context when omitted. User tokens must supply it unless the credential's fixed scope resolves it; secret keys may omit it (the key's organization applies).

Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/teams/497f6eca-6276-4993-bfeb-53cbbbba6f08/members"
{  "members": [    {      "userId": "string",      "name": "string",      "email": "user@example.com",      "addedAt": "2019-08-24T14:15:22Z"    }  ]}