Restricting REST API access to specific tablesIssue This article describes how to restrict users from accessing specific tables from REST web services. Procedure In this example you want to give access to only the incident table from REST Web services: Create a test user (from the sys_user table)Create a new role (test_role) and assign this new role to the test user created in step 1Create an ACL on the incident table with reading access and assign this role(test_role) to this ACL. Go to any tools like postman Try a GET operation using that test user to get an incident record.You should get a result (user record) Try to access any other table using the same user You will get a "User Not Authorized" message