Query an Individual Organization Member
GET /api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id}
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_id_or_slug
(string)REQUIREDThe ID or slug of the organization the resource belongs to.
member_id
(string)REQUIREDThe ID of the member to query.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:member:admin
member:read
member:write
Copied
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id} \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied{ "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" }, "sentryOrgRole": "member" }