Query an Individual Organization Member
Query an individual organization member with a SCIM User GET Request.
- The
name
object will contain fieldsfirstName
andlastName
with the values ofN/A
. Sentry's SCIM API does not currently support these fields but returns them for compatibility purposes.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization.
member_id
(integer)REQUIREDThe id of the member you'd like to query.
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/{member_id}
curl https://sentry.io/api/0/organizations/{organization_slug}/scim/v2/Users/{member_id} \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
"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"
}
}