I need to change sharing and permissions for a lookup table file using the REST API.
I have been searching high and low for documentation, but I have been unable to find anything.
Does anyone have an idea how this is done?
Got it:
curl -k -u admin:password http://localhost:8089/servicesNS/js/search/data/lookup-table-files/lookup.csv/acl -d owner=js -d sharing=app -d perms.read=* -d perms.write=*
Then i suppose through this url i can change the permission, please correct me if i am wrong
https://localhost:8089/servicesNS/ks/search/saved/fvtags/host=hostvalue/acl
Then i suppose through this url i can change the permission, please correct me if i am wrong
https://localhost:8089/servicesNS/ks/search/saved/fvtags/host=hostvalue/acl
appending /acl (curl -k -u admin:password https://localhost:8089/servicesNS/js/search/data/lookup-table-files/lookup.csv/acl -d owner=js -d sharing=app) seems to do the trick for owner and sharing, but i havent found the param for read and write access.
Anyone?