Find groups
GET
/rest/api/3/groups/picker
Groups
html
field where the matched query term is highlighted in the group name with the HTML strong tag. Also, the groups list is wrapped in a response object that contains a header for use in the picker, specifically Showing X of Y matching groups.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/groups/picker'
Response Response Example
{
"header": "Showing 20 of 25 matching groups",
"total": 25,
"groups": [
{
"name": "jdog-developers",
"html": "<b>j</b>dog-developers",
"groupId": "276f955c-63d7-42c8-9520-92d01dca0625"
},
{
"name": "juvenal-bot",
"html": "<b>j</b>uvenal-bot",
"groupId": "6e87dc72-4f1f-421f-9382-2fee8b652487"
}
]
}
Request
Query Params
accountId
stringÂ
optional
query
stringÂ
optional
exclude
array[string]
optional
excludeGroupIds
is recommended to identify a group.A group to exclude from the result. To exclude multiple groups, provide an ampersand-separated list. For example,
exclude=group1&exclude=group2
. This parameter cannot be used with the excludeGroupIds
parameter.excludeId
array[string]
optional
excludeId=group1-id&excludeId=group2-id
. This parameter cannot be used with the excludeGroups
parameter.maxResults
integerÂ
optional
jira.ajax.autocomplete.limit
.caseInsensitive
stringÂ
optional
userName
stringÂ
optional
Responses
Modified at 2023-07-13 03:27:27