So I have a database Username
it has the permissions as json "$permissions": [
"read(\"any\")",
"update(\"user:xxxxxxxxxxxxxxxxxxxxx\")"
],
. I have done a GET REST request from postman , return the data how can I restrict this and only allow specific Client to respond
TL;DR
The user wants to know how to restrict the database read with the permission "Any" from REST calls to only specific clients. They have a database with the given permissions and have successfully made a GET request from Postman. They are seeking guidance on how to limit access to only certain clients.