List an Organization's Members
Returns a paginated list of members bound to a organization with a SCIM Users GET Request.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
Query Parameters:
startIndex
(integer)SCIM 1-offset based index for pagination.
filter
(string)A SCIM filter expression. The only operator currently supported is
eq
.count
(integer)The maximum number of results the query should return, maximum of 100.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:member:read
GET /api/0/organizations/{organization_slug}/scim/v2/Users
curl https://sentry.io/api/0/organizations/{organization_slug}/scim/v2/Users \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"totalResults": 1,
"startIndex": 1,
"itemsPerPage": 1,
"Resources": [
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "102",
"userName": "test.user@okta.local",
"emails": [
{
"primary": true,
"value": "test.user@okta.local",
"type": "work"
}
],
"name": {
"familyName": "N/A",
"givenName": "N/A"
},
"active": true,
"meta": {
"resourceType": "User"
}
}
]
}