Hi,
In the current documentation for Create Group in the JIRA Rest API:
https://docs.atlassian.com/jira/REST/latest/#api/2/group-createGroup
I can't seem to find what to put in the payload or parameters for the POST command to /rest/api/2/group.
I was wondering if I could get some help.
Thanks!
Hi,
Try this in your post method:
{"name": "GroupName"}
I test with REST API Browser and it work fine. I normally use the groovy script to do stuff with the API.
Here is my example:
import static groovyx.net.http.ContentType.* import groovyx.net.http.HTTPBuilder import groovy.sql.Sql import static groovyx.net.http.Method.* // JIRA Authorized user (Local) JiraUsrName = "" // JIRA Admin username JiraPsw = "" // JIRA Admin password // JIRA API servers def JIRAServer = "yourserver/jira" // TheMan/jira (Do not put http) println "" + System.getProperty("line.separator") println "===============================" println "Starting on: ${JIRAServer} Server" println "===============================" // Global Parameters def httpAdd // Obj for the HTTPBuilder def TestAddGroup = [] // Test Add Group def Count = 0 // Counter for loop // Example data TestAddGroup.add("ManTestAAA") TestAddGroup.add("ManTestBBB") TestAddGroup.add("ManTestCCC") // JIRA Rest API httpAdd = new HTTPBuilder("http://${JIRAServer}/rest/api/2/group") httpAdd.headers['Authorization'] = 'Basic ' + "${JiraUsrName}:${JiraPsw}".getBytes('iso-8859-1').encodeBase64() // If found any groups if ( TestAddGroup.size() ){ // Add JIRA user to the tempo-approval group through the Rest API println "" println "=== :Groups are Being Added: ===" while( Count < TestAddGroup.size() ){ httpAdd.request(POST, JSON){ // Parse JSON data body = [ name: "'" + TestAddGroup[Count] + "'" ] response.success = { resp -> println "Success! ${resp.status} : Added ${TestAddGroup[Count]}" Count++ } response.failure = { resp -> if (resp.status == 400) { println "Request failed with status ${resp.status} : User requested an empty group name or group already exists" } else if (resp.status == 401) { println "Request failed with status ${resp.status} : The current jira user is not authenticated" } else if (resp.status == 403) { println "Request failed with status ${resp.status} : The current user does not have administrator permissions" } else if (resp.status == 500) { println "Request failed with status ${resp.status} : Operation is not permitted or error occurs while creating the group" } else { println "Error : Error code is not match or jira may down" } Count = TestAddGroup.size() + 1 } } } } else { // No user found to add println "=== :No group to add: ===" }
Thanks so much! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.