Hi,
Once you login user will be created in the system. If you change any of the attributes it will create a new user. You can delete an existing user with the REST API.
Please refer following document and below description -
https://docs.appdynamics.com/display/PRO45/RBAC+API#RBACAPI-DeleteUser
curl -X DELETE -u user1@customer1 http(s)://<controller-host>:<controller-port>/controller/api/rbac/v1/users/<user-id>
Replace user1 with your Admin user, customer1 with your account name, <controller-host> with the actual host and <controller-port> with the actual port. Replace the <user-id> with the ID which you want to delete. To get the User ID run the following query. Select id, name, email, security_provider_type from user where name=<user-name> and account_id=2 and security_provider_type = 'SAML'; Replace <User-name> with the name of the user which you want to delete. The above query will return the Id of the user, use that ID and execute the rest API.
- Thanks
... View more