Update an Organization Member's Attributes
PATCH /api/0/organizations/{organization_slug}/scim/v2/Users/{member_id}
Update an organization member's attributes with a SCIM PATCH Request.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the resource belongs to.
member_id
(string)REQUIREDThe ID of the member to update.
Body Parameters
Operations
(array(object))REQUIREDA list of operations to perform. Currently, the only valid operation is setting a member's
active
attribute to false, after which the member will be permanently deleted.Copied{ "Operations": [{ "op": "replace", "path": "active", "value": False }] }
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:member:admin
member:write
curl https://sentry.io/api/0/organizations/{organization_slug}/scim/v2/Users/{member_id} \ -H 'Authorization: Bearer <auth_token>' \ -H 'Content-Type: application/json' \ -d '{}'
RESPONSE
Success.