Check if a user or a group can perform an operation to the specified content. The operation
to check
must be provided. The user’s account ID or the ID of the group can be provided in the subject
to check
permissions against a specified user or group. The following permission checks are done to make sure that the
user or group has the proper access:
Permissions required: Permission to access the Confluence site ('Can use' global permission) if checking permission for self, otherwise 'Confluence Administrator' global permission is required.
read:confluence-content.permission
read:content.permission:confluence
Connect app scope required: READ
string
RequiredThe content permission request.
PermissionSubjectWithGroupId
Requiredstring
RequiredReturned if the permission check completed successfully
This object represents the response for the content permission check API. If the user or group does not have permissions, the following errors may be returned:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This sample uses Atlassian Forge
// https://developer.atlassian.com/platform/forge/
import api, { route } from "@forge/api";
var bodyData = `{
"subject": {
"type": "user",
"identifier": "<string>"
},
"operation": "read"
}`;
const response = await api.asUser().requestConfluence(route`/wiki/rest/api/content/{id}/permission/check`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: bodyData
});
console.log(`Response: ${response.status} ${response.statusText}`);
console.log(await response.json());
1
2
3
4
5
6
7
8
9
10
11
12
{
"hasPermission": true,
"errors": [
{
"translation": "<string>",
"args": [
"<string>"
]
}
],
"_links": {}
}
Rate this page: