Orgs Groups APIs
The API is available for customers using the new user management experience only. How the new user management experience works
Returns a list of groups within an organization, offering search functionality through multiple parameters for more precise results.
string
Requiredarray<string>
GroupNames
string
integer
array<string>
Organization found. Response contains group search results
1
2
3
4
5
6
7
8
curl --request POST \
--url 'https://api.atlassian.com/admin/v1/orgs/{orgId}/groups/search' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"limit": 20
}'
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "example",
"description": "example description"
}
],
"links": {
"next": "MDNlZWRmNzMtMWYwMi00NGM5LWI4NjgtZGQ1NTIwMjIwYjhj",
"self": "MDI0MzkwOGEtMmYyOC00NzgzLWI5YTktMDUwZTExNzJjZDU4"
}
}
Rate this page: