Hi,
I'm trying to implement personal data removal for not active user (for GDPR purpose).
After domain user removal, user is not accessible in Jira, but on "Managed Account" there are his/her personal data. When you delete it from this page then it is cleared.
I was trying to use:
DEL /rest/api/2/user
but it does not bring any effect.
Could you help me how to achieve it?
Another option for me is anonymization, but I do not see any endpoint in Api documentation which could do it for me.
regards
Sebastian Kaczmarkiewicz
Looking at the URL format example you give, you may not be using the correct REST API base/endpoint?
Check out the User management API docs at https://developer.atlassian.com/cloud/admin/user-management/rest/intro/#about
Delete endpoint returning me 404 with:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could be a few things.
First, it looks like you are doing a GET, but for the delete endpoint you need to use a POST.
Second, use the get profile endpoint to make sure the user id exists, and you have permission to see it.
Third, you could have a formatting problem with your HTTP request. You would need to include the "code" you are using to make the request.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In first, I actually had DELETE verb.
Second, the deleted account must be deactivated in order to work.
Thanks for help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.