Editor's Note
manage-roles-permissions
Create roles, assign permissions on objects and pages, and manage site memberships via Headless Admin User and object collaborators APIs. Use when the user asks to add a role, grant permissions, make a page private, or control who can view or edit an object's entries. Requires feature flag LPD-17564 for per entry object permissions.
Install
npx skills add https://github.com/liferay/liferay-portal --skill manage-roles-permissionsManage Roles and Permissions
Create roles and assign the minimum required permissions for objects, pages, and sites.
When to Invoke
- "Create a Reader role", "add a role that can only view Books"
- "Grant edit permissions on this object to Site Members"
- "Make this page visible only to authenticated users"
- "Give the Sales role permission to add and update Orders"
- Called by
build-siteduring the roles and ACL phase
Prerequisites
Feature flag LPD-17564 is required for the object collaborators API (per object definition permissions). Verify via feature-flags skill.
Workflow
Create a Role
curl \
--data '{
"name": "<RoleName>",
"roleType": "regular",
"name_i18n": {"en_US": "<Role Display Name>"}
}' \
--header "Content-Type: application/json" \
--request POST \
--silent \
--url "http://localhost:${PORT}/o/headless-admin-user/v1.0/roles" \
--user "test@liferay.com:test"
roleType values:
| Value | Scope |
|---|---|
regular | Portal wide; applies across all sites |
site | Site scoped; membership and permissions are site specific |
organization | Organization scoped |
Save the returned id as <role-id>.
Assign Users to a Role
# Assign a user account to a regular role
curl \
--request POST \
--silent \
--url "http://localhost:${PORT}/o/headless-admin-user/v1.0/roles/<role-id>/association/user-account/<user-id>" \
--user "test@liferay.com:test"
For site scoped role assignment, use the role association endpoint scoped to the site (there is no /sites/{id}/site-members endpoint). The site is addressed by its numeric <site-id> here:
curl \
--request POST \
--silent \
--url "http://localhost:${PORT}/o/headless-admin-user/v1.0/roles/<role-id>/association/user-account/<user-id>/site/<site-id>" \
--user "test@liferay.com:test"
Grant Permissions on an Object Definition
Object level permissions control which roles can create, view, update, or delete entries for that object definition.
Verify this endpoint for your version first (
get-openapiMCP tool, orGET /o/object-admin/v1.0/openapi.json). On current DXP,permissionsis exposed as a property of the object definition rather than a dedicated/permissionssubresource — the PUT below may 404. If it does, set object permissions in Control Panel → Objects → [Object] → Permissions.
curl \
--data '{
"permissions": [
{
"actionIds": ["VIEW", "PERMISSIONS"],
"roleId": <role-id>
}
]
}' \
--header "Content-Type: application/json" \
--request PUT \
--silent \
--url "http://localhost:${PORT}/o/object-admin/v1.0/object-definitions/<definition-id>/permissions" \
--user "test@liferay.com:test"
Common actionIds for object definitions:
| Action ID | Meaning |
|---|---|
ADD_OBJECT_ENTRY | Create entries |
VIEW | View the object in site and admin UI |
PERMISSIONS | Manage permissions on this object |
Grant Permissions on Object Entries (Requires LPD-17564)
Per entry permissions are managed via the object collaborators API. Ensure LPD-17564 is enabled before calling.
curl \
--data '{
"permissions": [
{
"actionIds": ["VIEW", "UPDATE"],
"roleId": <role-id>
}
]
}' \
--header "Content-Type: application/json" \
--request PUT \
--silent \
--url "http://localhost:${PORT}/o/c/<pluralLabel>/<entry-id>/permissions" \
--user "test@liferay.com:test"
Common actionIds for object entries:
| Action ID | Meaning |
|---|---|
VIEW | Read the entry |
UPDATE | Edit the entry |
DELETE | Delete the entry |
PERMISSIONS | Manage permissions on this entry |
Grant Permissions on a Site Page
Page level permissions control visibility and edit access.
curl \
--data '{
"permissions": [
{
"actionIds": ["VIEW"],
"roleId": <guest-role-id>
},
{
"actionIds": ["VIEW", "UPDATE"],
"roleId": <role-id>
}
]
}' \
--header "Content-Type: application/json" \
--request PUT \
--silent \
--url "http://localhost:${PORT}/o/headless-admin-site/v1.0/sites/<site-erc>/site-pages/<page-erc>/permissions" \
--user "test@liferay.com:test"
To make a page visible only to authenticated users, remove the VIEW permission from the Guest role. To make it fully private, also remove it from the User role and grant VIEW only to the target role.
Verify Roles and Permissions
# List roles
curl \
--silent \
--url "http://localhost:${PORT}/o/headless-admin-user/v1.0/roles" \
--user "test@liferay.com:test" \
| jq '[.items[] | {id, name, roleType}]'
# Check permissions on an object definition
curl \
--silent \
--url "http://localhost:${PORT}/o/object-admin/v1.0/object-definitions/<definition-id>/permissions" \
--user "test@liferay.com:test" \
| jq '.'
Permission Design Principles
- Assign the minimum set of
actionIdsthat satisfies the workflow requirement. - Use site roles (not regular roles) for permissions that should vary per site.
- The Guest role represents unauthenticated visitors. Remove VIEW from Guest to require login.
- The User role represents any authenticated user. Remove VIEW from User and grant to a specific role to restrict access.
Creating Users via API — Clear Password and Terms Flags
When creating user accounts through the Headless Admin User API, explicitly clear the password reset and terms of use flags. Otherwise the new user's subsequent REST calls return silent 403s until they complete the password reset and terms acceptance prompts through the UI:
{
"agreedToTermsOfUse": true,
"passwordReset": false
}
Include both fields on the create payload where supported. Caveat: agreedToTermsOfUse and passwordReset are not part of the standard headless UserAccount DTO on current DXP — verify against the OpenAPI spec (get-openapi MCP tool, or GET /o/headless-admin-user/v1.0/openapi.json) before relying on them. The reliable way to avoid the first login 403 trap is the preboot bootstrap (terms.of.use.required=false, passwords.default.policy.change.required=false) covered in workspace-init.