Is it possible to restrict REST calls for some users only?Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } body.c5 {height: 100%;} td.c4 {vertical-align: middle; text-align: left;} td.c3 {width: 50; vertical-align: middle; text-align: center;} img.c2 {align: baseline;} hr.c1 {border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc;} --> Is it possible to restrict REST calls for some users only? ProblemAs users become more knowledgeable, they may start using REST calls to retrieve data from instances. Some administrators want the option to disable REST for some users. SymptomsAdministrators see REST messages coming from different users on the instance transaction logs. Administrators could get asked to avoid REST API calls done by clients like powershell, Postman, REST explorer, Excel scripts, and other REST clients directly into the instance. CauseThere are no settings that restrict REST access for some users. If a user has access to the record, the REST API is available for that record as well. Technically, everything is "accessible" by default. This means that the API is defined for all tables, but the web service must still pass both user authentication, Data Policies, and ACLs to get to the data. ResolutionWe recommend educating users if their actions are affecting instance performance. REST transactions are visible in instance transaction logs. If users abuse REST services, educate them on how they can tune their queries to reduce the impact on the instance. To validate the transactions created on Today, with URL starting with /, Response time > 5000 and created is not guest: <instance>/syslog_transaction_list.do?sysparm_query=sys_created_onONToday%40javascript%3Ags.beginningOfToday()%40javascript%3Ags.endOfToday()%5EurlSTARTSWITH/%5Eresponse_time%3E5000%5Esys_created_by!%3Dguest%5Etype%3Drest Administrators can also create transaction quota rules to limit some access to requests, but this is not recommended because it should not restrict required internal REST calls from those users. Use the available transaction quotas as as example (such as, search for <instance>/sysrule_quota_list.do?sysparm_query=conditionLIKErest). Note that this is a very advanced feature, so fully test on a development instance before making changes on production.