cURL
curl --request GET \ --url https://api.shiftkeeper.io/teams/{team_id}/members/ \ --header 'x-api-key: <api-key>'
{ "members": [ { "id": "<string>", "name": "<string>", "email": "[email protected]", "role": "owner", "seat": "viewer", "time_zone": "<string>", "slack_id": "<string>" } ], "meta": { "total": 123, "page": 123, "per_page": 123 } }
List all members of a team.
Enter your API key which starts with 'keeper_'
The ID of the team.
"tea_VJ4sYEOOXVvJBXqFjRzpm"
The number of items per page.
1 <= x <= 100
The page number of the results to return.
x >= 1
Default Response
Show child attributes
{ "total": 100, "page": 1, "per_page": 20 }