Delete an Organization Member via SCIM
DELETE /api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id}
Delete an organization member with a SCIM User DELETE Request.
Path Parameters
- organization_id_or_slug(string)REQUIRED
- The id or slug of the organization the resource belongs to. 
- member_id(string)REQUIRED
- The ID of the member to delete. 
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:- member:admin
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id} \
 -H 'Authorization: Bearer <auth_token>' \
 -X DELETERESPONSE
Success.