Skip to main content
GET
/
poolside
/
v1
/
teams
/
{team_id}
/
members
List team members
curl --request GET \
  --url https://api.example.com/poolside/v1/teams/{team_id}/members
{
  "links": {
    "next": "<string>"
  },
  "users": [
    {
      "email": "jsmith@example.com",
      "id": "<string>"
    }
  ],
  "$schema": "<string>"
}

Path Parameters

team_id
string
required

Query Parameters

start_token
string

token for fetching the next page of results, if any. May specify start_token or page but not both.

Minimum string length: 4
page
integer<int64>

Page number (1-indexed, defaults to 1). May specify start_token or page but not both.

page_size
integer<int64>

Items per page (defaults to 20, max 300)

include_totals
boolean

Include totals in the response

Response

OK

users
object[]
required

a page of references to users who are members of the team

$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/ListTeamMembersPage.json"