How to define and handle permission for members in a group using REST API ?
Hi,
I want to have a group of member and an admin .
Members will have only the read rights, whereas admin will have all the rights even to manipulate the users.
How should this be done using Rest API ? I could not find examples or any documentation on how to do it.
Could someone please share on how to do it ?
btw if someone is breaking their head as I did so do not worry when you have Sherry. Here is the solution to do it with the .Net client
Entity doc = client.Operation(“Document.AddPermission”)
.SetInput("doc:/TestDomain/TestWorkspace")
.SetParameter("username", "crapgroup")
.SetParameter("permission", "Read")
.Execute()
.Result;
To do it with Rest API you can follow the parameters here http://nuxeo.github.io/api-playground/#/commands/Document.AddPermission