Returns list of permissions granted to users and groups.
Example request URI's:
https://example.com/confluence/rest/api/permissions
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
Returns a JSON representation of all permissions granted to users/groups/anonymous user.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/permissions' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
{
"operation": {
"targetType": "space",
"operationKey": "read"
},
"subject": {
"displayName": "<string>",
"type": "<string>"
}
}Returns list of permissions granted to anonymous user.
Example request URI's:
https://example.com/confluence/rest/api/permissions/anonymous
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
Returns a JSON representation of the permissions granted to the anonymous user.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/permissions/anonymous' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
{
"operation": {
"targetType": "space",
"operationKey": "read"
},
"subject": {
"displayName": "<string>",
"type": "<string>"
}
}Returns list of permissions granted to group.
Example request URI's:
https://example.com/confluence/rest/api/permissions/group/{groupName}}
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns a JSON representation of the permissions granted to the group.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/permissions/group/{groupName}' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
{
"operation": {
"targetType": "space",
"operationKey": "read"
},
"subject": {
"displayName": "<string>",
"type": "<string>"
}
}Returns list of permissions granted to unlicensed users.
Example request URI's:
https://example.com/confluence/rest/api/permissions/unlicensed
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
Returns a JSON representation of the permissions granted to the unlicensed users.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/permissions/unlicensed' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
{
"operation": {
"targetType": "space",
"operationKey": "read"
},
"subject": {
"displayName": "<string>",
"type": "<string>"
}
}Returns list of permissions granted to user.
Example request URI's:
https://example.com/confluence/rest/api/permissions/user/{userKey}}
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns a JSON representation of the permissions granted to the user.
1
2
3
curl --request GET \
--url 'http://{baseurl}/confluence/rest/api/permissions/user/{userKey}' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
9
10
{
"operation": {
"targetType": "space",
"operationKey": "read"
},
"subject": {
"displayName": "<string>",
"type": "<string>"
}
}Rate this page: