Creates the given group identified by name.
Forge and OAuth2 apps cannot access this REST resource.
string
object
object
returns the new group if group is created successfully
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
curl --request POST \
--url 'http://{baseurl}/confluence/rest/api/admin/group' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "group1",
"_links": {
"base": "<string>",
"context": "<string>",
"self": "<string>"
},
"_expandable": {
"attribute": "<string>"
}
}'1
2
3
4
5
6
7
8
9
10
11
{
"name": "group1",
"_links": {
"base": "<string>",
"context": "<string>",
"self": "<string>"
},
"_expandable": {
"attribute": "<string>"
}
}Deletes the given group identified by name.
Forge and OAuth2 apps cannot access this REST resource.
string
Requiredreturns no content if group is deleted successfully
1
2
curl --request DELETE \
--url 'http://{baseurl}/confluence/rest/api/admin/group/{groupName}'Rate this page: