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

User Group

Postman Collection
OpenAPI
PUT

Update user group

Add the given User identified by username to the given Group identified by groupName. This method is idempotent i.e., if the membership already exists then no action will be taken.

Request

Path parameters

groupName

string

Required
username

string

Required

Responses

No Content if the user is successfully added to the group

PUT/rest/api/user/{username}/group/{groupName}
1 2 curl --request PUT \ --url 'http://{baseurl}/confluence/rest/api/user/{username}/group/{groupName}'
DEL

Delete user group

Removes the given User identified by username from the given Group identified by groupName. This method is idempotent i.e., if the membership already exists then no action will be taken.

Request

Path parameters

groupName

string

Required
username

string

Required

Responses

No Content if the user is successfully removed from the group

DEL/rest/api/user/{username}/group/{groupName}
1 2 curl --request DELETE \ --url 'http://{baseurl}/confluence/rest/api/user/{username}/group/{groupName}'

Rate this page: