Update an Organization Member's Attributes

Update an organization member's attributes with a SCIM PATCH Request. The only supported attribute is active. After setting active to false Sentry will permanently delete the Organization Member.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization.

member_id (integer)
REQUIRED

The id of the member you'd like to update.

Scopes

<auth_token> requires the following scopes:
  • member:write
PATCH /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>' \
 -H 'Content-Type: application/json'
RESPONSE
Success.