Android / Atlassian Confluence Cloud / Get content restriction status for group
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://your-domain.atlassian.net/wiki/rest/api/content/:id/restriction/byOperation/:operationKey/group/:groupName",sbResponseBody);
if (success == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, "Response status code = " + String.valueOf(http.get_LastStatus()));
Log.i(TAG, sbResponseBody.getAsString());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://your-domain.atlassian.net/wiki/rest/api/content/:id/restriction/byOperation/:operationKey/group/:groupName
Postman Collection Item JSON
{
"name": "Get content restriction status for group",
"request": {
"auth": {
"type": "oauth2"
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/restriction/byOperation/:operationKey/group/:groupName",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"restriction",
"byOperation",
":operationKey",
"group",
":groupName"
],
"variable": [
{
"key": "id",
"value": "<string>",
"type": "string",
"description": "(Required) The ID of the content that the restriction applies to."
},
{
"key": "operationKey",
"value": "<string>",
"type": "string",
"description": "(Required) The operation that the restriction applies to."
},
{
"key": "groupName",
"value": "<string>",
"type": "string",
"description": "(Required) The name of the group to be queried for whether the content restriction\napplies to it."
}
]
},
"description": "Returns whether the specified content restriction applies to a group.\nFor example, if a page with `id=123` has a `read` restriction for the `admins` group,\nthe following request will return `true`:\n\n`https://your-domain.atlassian.net/wiki/rest/api/content/123/restriction/byOperation/read/group/admins`\n\nNote that a response of `true` does not guarantee that the group can view the page, as it does not account for\naccount-inherited restrictions, space permissions, or even product access. For more\ninformation, see [Confluence permissions](https://confluence.atlassian.com/x/_AozKw).\n\n**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:\nPermission to view the content."
},
"response": [
{
"name": "Returns true if the content restriction applies to the group. The response\nwill not return a response body.",
"originalRequest": {
"method": "GET",
"header": [
{
"description": {
"content": "Added as a part of security scheme: oauth2",
"type": "text/plain"
},
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/restriction/byOperation/:operationKey/group/:groupName",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"restriction",
"byOperation",
":operationKey",
"group",
":groupName"
],
"variable": [
{
"key": "id"
},
{
"key": "operationKey"
},
{
"key": "groupName"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "Returned if;\n\n- There is no content with the given ID.\n- The calling user does not have permission to view the content.\n- An invalid operation or group is specified.",
"originalRequest": {
"method": "GET",
"header": [
{
"description": {
"content": "Added as a part of security scheme: oauth2",
"type": "text/plain"
},
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/api/content/:id/restriction/byOperation/:operationKey/group/:groupName",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"content",
":id",
"restriction",
"byOperation",
":operationKey",
"group",
":groupName"
],
"variable": [
{
"key": "id"
},
{
"key": "operationKey"
},
{
"key": "groupName"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}