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 New Group In Ranger using REST API

avatar
New Member

Hi Experts,

I am looking for adding new groups in Ranger using the REST API but couldn't find any method. I did get the groups listed but not able to create API for adding new one.

Thanks

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

3 REPLIES 3

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
@samarth srivastava

Please accept and close this thread, if the above solution worked for you.

avatar
New Member

Hi, thanks. This helped.