How to find all groups from JIRA

Robin Swart September 16, 2013

Hi

I am writing a function to remove a user from all groups of my Jira instance. I'm using the JIRA Rest api version 6.0.4 and while it does have functionality to get a group by it's name, I need to be able to find all groups and I can't see how to do this.

Is there a way to do this using this api?

2 answers

1 accepted

0 votes
Answer accepted
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2013

the following way you can get all groups for specific user(i used this function in javascript)

function getGroups(user)
{
var groups;
     AJS.$.ajax({
        url: "/rest/api/2/user?username="+user+"&expand=groups",
        type: 'get',
        dataType: 'json',
        async: false,
        success: function(data) {
            groups = data.groups.items;
        }
     });
     return groups;
}

asif khan May 8, 2014

Hi ,

Thanks for the code.But it returns the groups as objects.In alert,i get only [object,object]. Is there any way that i can use to get the name of the groups?i have used the same code in my script.

thanks

1 vote
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 16, 2013

Suggest an answer

Log in or Sign up to answer