---
title: "groupContentPermissions"
canonical: "https://support.appfire.com/space/PSCONF/15305159/groupContentPermissions"
format: markdown
---
> Macro (aura-html)

> Macro (table-plus)
> 
> |  |  |  |  |
> | --- | --- | --- | --- |
> | **Syntax** | groupContentPermissions(pageId, groupName) | **Package** |  |
> | **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns the permissions of the provided group for the specified content.

Returns the permissions of the provided group for the specified content.

## Parameters

> Macro (table-plus)
> 
> | Parameter name | Type | Required | Description |
> | --- | --- | --- | --- |
> | pageId | Number | Yes | The ID of the page to get permissions for. |
> | groupName | String | Yes | The name of a group to get permissions for. |

## Return Type

**String []**

Returns a string array containing permission types for the specified content and group.

## Example

Retrieves content permissions of the "confluence-users" group for a page with the 11508 ID.

```javascript
string[] permissions = groupContentPermissions(11508, "confluence-users");
```


## Permission Reference

| Permission type | Description |
| --- | --- |
| USECONFLUENCE | Permission to use Confluence. |
| LIMITEDUSECONFLUENCE | Permission to limited usage of Confluence. |
| UPDATEUSERSTATUS | Permission to update user status. |
| VIEWUSERPROFILES | Permission to view user profiles. |
| SYSTEMADMINISTRATOR | Permission to be a system administrator. |
| ADMINISTRATECONFLUENCE | Permission to be a Confluence administrator. |
| PERSONALSPACE | Permission to work with personal space. |
| CREATESPACE | Permission to create a space. |
| VIEWSPACE | Permission to view a space. |
| REMOVEOWNCONTENT | Permission to remove own content. |
| COMMENT | Permission to add comments. |
| EDITSPACE | Permission to edit a space. |
| SETSPACEPERMISSIONS | Permission to update space permissions. |
| REMOVEPAGE | Permission to remove a page. |
| REMOVECOMMENT | Permission to remove a comment. |
| REMOVEBLOG | Permission to remove a blog. |
| CREATEATTACHMENT | Permission to create an attachment. |
| REMOVEATTACHMENT | Permission to remove an attachment. |
| EDITBLOG | Permission to edit a blog. |
| EXPORTSPACE | Permission to export a space. |
| REMOVEMAIL | Permission to remove email. |
| SETPAGEPERMISSIONS | Permission to update page permissions |
| PROFILEATTACHMENTS | Permission to work with profile attachments. |


## See also

> Macro (contentbylabel)