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: