• Orgs
  • Users
  • Groups
  • Domains
  • Events
  • Policies
  • Directory
  • Workspaces
Cloud
Organizations REST API / Reference / REST API

Groups

Postman Collection
OpenAPI

Orgs Groups APIs

POST

Search for groups within an organization (available only for the new user management experience)Experimental

Returns a list of groups in an organization using the new user management experience ** Learn more about the new user management experience.

Request

Path parameters

orgId

string

Required

Request bodyapplication/json

groupIds

array<string>

groupNames

GroupNames

cursor

string

limit

integer

expand

array<string>

Responses

Organization found. Response contains group search results

application/json

GroupsSearchPage
POST/v1/orgs/{orgId}/groups/search
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 }'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 { "data": [ { "id": "<string>", "name": "<string>", "description": "<string>" } ], "links": { "next": "<string>", "self": "<string>" } }

Rate this page: