Gets a list of members assigned to a platform role in a team.
Required permission
Account > Admin > Roles > Read
Path parameters
teamId
string requiredID of the teamroleId
string requiredID of the team role
Query parameters
per_page
integerThe number of results to display per request. Maximum of 100 results per page.page
integerThe page number to access.cursor
stringThe cursor returned from the previous page of results, used to request the next page.userIds
Filter members by user ID. Specify the parameter multiple times to filter by multiple user IDs.
Response body
- {object}Response object.
data
{object} requiredResult data.members
[array] requiredAn array of members in the team role.- {object}A team role member object.
id
string | null requiredID (username) of the team member. For users who are not finalized this ID may change on finalisation.name
stringDisplay name from the member profile.emails
[array]Email addresses of the member.- {object}
address
string requiredverified
boolean requiredjoinedAt
stringThe time the member joined the team.finalized
booleanWhether the account has been fully set up by the user.pagination
{object} requiredData about the endpoint pagination.hasNextPage
boolean requiredIs there another page of results available?cursor
stringThe cursor to access the next page of results.count
number requiredThe number of results returned by this request.
API
CLI
JS Client
GET /v1/teams/{teamId}/roles/{roleId}/members
Example response
200 OK
A list of members in the team role.
JSON
{
"data": {
"members": [
{
"id": "john-doe",
"name": "John Doe",
"emails": [
{
"address": "john@example.com",
"verified": true
}
],
"joinedAt": "2021-01-20T11:19:53.175Z"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}