You can remove members from organizations using either the or the . Removing a user from an organization will remove only that user’s membership in the given organization; it will not remove the user from the connection or the Auth0 tenant. The removal process takes approximately 5 - 10 seconds.

Auth0 Dashboard

To remove a member via the Auth0 Dashboard:
  1. Navigate to Auth0 Dashboard > Organizations, and select the organization for which you want to configure membership.
  2. Select the Members view, locate the member you want to remove, and expand its More Options () menu.
  3. Select Remove member, and confirm.

Management API

To remove members via the Management API: Make a DELETE call to the Delete Organization Members endpoint. Be sure to replace the ORG_ID, MGMT_API_ACCESS_TOKEN, and USER_ID placeholder values with your organization ID, Management API , and user ID, respectively.
curl --request DELETE \
  --url 'https://{yourDomain}/api/v2/organizations/ORG_ID/members' \
  --header 'authorization: Bearer MGMT_API_ACCESS_TOKEN' \
  --header 'cache-control: no-cache' \
  --data '{ "members": [ "USER_ID", "USER_ID", "USER_ID" ] }'
Find Your Auth0 DomainIf your Auth0 domain is your tenant name, your regional subdomain (unless your tenant is in the US region and was created before June 2020), plus .auth0.com. For example, if your tenant name were travel0, your Auth0 domain name would be travel0.us.auth0.com. (If your tenant were in the US and created before June 2020, then your domain name would be https://travel0.auth0.com.)If you are using custom domains, this should be your custom domain name.
ValueDescription
ORG_IDID of the organization for which you want to remove membership.
MGMT_API_ACCESS_TOKENAccess Token for the Management API with the scope delete:organization_members.
USER_IDID of the user(s) you want to remove from the specified organization.

Response status codes

Possible response status codes are as follows:
Status codeError codeMessageCause
204Users successfully removed from organization.
400invalid_bodyInvalid request body. The message will vary depending on the cause.The request payload is not valid.
400invalid_query_stringInvalid request query string. The message will vary depending on the cause.The query string is not valid.
401Invalid token.
401Invalid signature received for JSON Web Token validation.
401Client is not global.
403insufficient_scopeInsufficient scope; expected any of: delete:organization_members.Tried to read/write a field that is not allowed with provided bearer token scopes.
429Too many requests. Check the X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers.