- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2019 11:13 PM
Hi. I have one more account in "servicenow" with another email I wanna delete him. How can do this?
Thanks!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2019 12:43 AM
Finally I got it, you're referring to the developer site (https://developer.servicenow.com) 🙂
If you want to remove an account here, you can click on the header menu Feedback and send a request like this or write directly an email to community@servicenow.com, they will take care of it:
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
Thank you
Cheers
Alberto

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2019 11:21 PM
Hi Georgi,
If you are an Admin in the Servicenow Instance then go to "sys_user" table and click on delete button.
If you are not an Admin, then you have to contact the Admin Team(Raise Ticket/send email/Call).
Other Possibility is if any AD is configured and user base is getting synched, then you have to contact AD Team and they will delete the account in Ad and will get deleted from Servicenow.
Mark Correct/Helpful, if applicable.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2019 11:25 PM
Hello! I do not want to drop an account from my instance. I want to delete my own servicenow account.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2019 12:18 AM
Share the screenshot.
There are multiple views available, which you can choose and see all major fields on the form, if you dont want to delete then make it inactive(active false).
If you are not able to see all the information then go to background script and run the script below.It will deactivate(not delete) the user account.(do copy the sys_id of the user account that you want to deactivate)
var gr = new GlideRecord('sys_user');
gr.addQuery('sys_id', 'the sys id you manually copied');//sys_id of the user account, right click and copy
gr.query();
while(gr.next())
{
gr.active = 'false';
gr.update();
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2019 11:29 PM
Hi,
If you have an admin access, instead of deleting the record make it inactive.
Thanks,
priyanka R