• Access Mode
  • Admin Group
  • Admin User
  • Attachments
  • Backup and Restore
  • Category
  • Child Content
  • Content Blueprint
  • Content Body
  • Content Descendant
  • Content Labels
  • Content Property
  • Content Resource
  • Content Restrictions
  • Content Version
  • Content Watchers
  • GlobalColorScheme
  • Group
  • Instance Metrics
  • Label
  • Long Task
  • Server Information
  • Space
  • Space Label
  • Space Permissions
  • Space Property
  • Space Watchers
  • SpaceColorScheme
  • User
  • User Group
  • User Watch
  • Webhooks
  • Other operations
Server
Confluence Data Center / / REST API

Group

Postman Collection
OpenAPI
GET

Get group by name

Get the user group with the group name

Forge and OAuth2 apps cannot access this REST resource.

Request

Path parameters

groupName

string

Required

Query parameters

expand

string

Responses

The user group with the group name

application/json

Group

GET/rest/api/group/{groupName}
1 2 3 curl --request GET \ --url 'http://{baseurl}/confluence/rest/api/group/{groupName}' \ --header 'Accept: application/json'
GET

Get groups

Get a paginated collection of user groups

Forge and OAuth2 apps cannot access this REST resource.

Request

Query parameters

expand

string

limit

integer

start

integer

Responses

The number of user groups in the system

application/json

object
GET/rest/api/group
1 2 3 curl --request GET \ --url 'http://{baseurl}/confluence/rest/api/group' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 { "results": [], "start": 25, "limit": 25, "size": 25, "_links": { "base": "http://localhost:8085/rest/api", "self": "http://localhost:8085/rest/api", "context": "http://localhost:8085/rest/api", "next": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=50", "prev": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=0" } }
GET

Get members of group

Get a paginated collection of users in the given group

Forge and OAuth2 apps cannot access this REST resource.

Request

Path parameters

groupName

Group

Required

Query parameters

expand

string

limit

integer

start

integer

Responses

a collection of users in the given group

application/json

object
GET/rest/api/group/{groupName}/member
1 2 3 curl --request GET \ --url 'http://{baseurl}/confluence/rest/api/group/{groupName}/member' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 { "results": [ { "profilePicture": { "path": "http://www.example.com/path/to/image.png", "width": 16, "height": 16, "isDefault": true }, "displayName": "Joe Smith", "type": "<string>" } ], "start": 25, "limit": 25, "size": 25, "_links": { "base": "http://localhost:8085/rest/api", "self": "http://localhost:8085/rest/api", "context": "http://localhost:8085/rest/api", "next": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=50", "prev": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=0" } }

Rate this page: