There is one to remove assigned permissions from a group. Nothing that remove a group permission assignment. Does show a call exist?
DELETE /api/v2/nodes/{id}/permissions/custom/{right_id} where right_id is the ID of the user or group you want tor remove from the permissions of the object.
That works. Thanks Jeremy!
Hi Jeremy,
Is it possible to apply the DELETE to the children when the node is a folder?
I tried the following and it did not work.
"body" = '{"apply_to":2}'
Raymond
DELETE methods in general do not support body parameters, and if one is provided, it will most likely be ignored. You'll need to supply apply_to information in the URL of the request: DELETE /api/v2/nodes/{id}/permissions/custom/{right_id}?apply_to=2