Getting error: "Only interactive users are allowed to access UI" while logging in to my PDI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2022 12:35 AM
Every time I am trying to log in to my PDI, I am getting the following error: "Only interactive users are allowed to access UI".
Tried to fetch the sys ID for my user record and update web_service_access_only to false using REST API GET and PATCH. But still unable to login.
Please help. Screenshot below.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2022 12:56 AM - edited 12-20-2022 12:57 AM
Hi @Mayank Das3
You can execute the rest api call using Postman if they do not have the second instance.
Below is the code snippet for postman:-
Method:- PATCH
URl will be:- https://your-instance.service-now.com/api/now/table/sys_user/6816f79cc0a8016401k5a33be04be440
Headers:-Accept: application/json
Content-Type: application/json
Authorization: Basic (give username as "admin" and admin user password)
Body:- {"web_service_access_only":"false"}
Feel free to reply here, if you have any queries.
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks