Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Add group in Ranger using REST API

avatar
New Member

I am not finding any way to add new group to Ranger using REST API. It is available in GUI but I need REST API. Please help.

I am able to list the groups but not able to create new one.

1 ACCEPTED SOLUTION

avatar

@samarth srivastava

REST API to create user group is "/service/xusers/secure/groups", Please refer to the below example on the usage.

curl -v -u '<username>:<password>' 'http://<ranger_host_address>:<ranger_port>/service/xusers/secure/groups' -H 'X-XSRF-HEADER: ""' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data-binary '{"name":"temporary-group","description":"test"}'

The request payload contains the user group name and description info.

View solution in original post

4 REPLIES 4

avatar

@samarth srivastava

REST API to create user group is "/service/xusers/secure/groups", Please refer to the below example on the usage.

curl -v -u '<username>:<password>' 'http://<ranger_host_address>:<ranger_port>/service/xusers/secure/groups' -H 'X-XSRF-HEADER: ""' -H 'Content-Type: application/json' -H 'X-Requested-With: XMLHttpRequest' --data-binary '{"name":"temporary-group","description":"test"}'

The request payload contains the user group name and description info.

avatar
New Member

Is there a rest API to add a user to this group. I have a REST API to create a user now I want to add him to this group and to a new group. How can i do that using "userName".

avatar
Rising Star

Can you please share the REST API Command which you are using to fetch the groups?

avatar
New Member

Thanks a lot. This helped a lot.