Actions199
- Collections Actions
- Forms Actions
- Actions Capabilities Actions
- Activities Actions
- Attachments Actions
- Budgets Actions
- Categories Actions
- Custom Actions Actions
- Custom Options Actions
- Documents Actions
- File Links Actions
- View File Link
- Delete File Link
- Open File Link
- Download File Link
- List Project Storages
- Get Project Storage
- Open Project Storage
- Create Storage
- Get Storage
- Update Storage
- Delete Storage
- Get Storage Files
- Prepare Storage File Upload
- Create Storage Folder
- Create Storage Oauth Credentials
- Open Storage
- Create Work Package File Link
- List Work Package File Links
- Grids Actions
- Groups Actions
- Help Texts Actions
- Memberships Actions
- Query Filter Instance Schema Actions
- News Actions
- Notifications Actions
- O Auth 2 Actions
- Posts Actions
- Principals Actions
- Priorities Actions
- Query Columns Actions
- Query Filters Actions
- Query Operators Actions
- Query Sort Bys Actions
- Relations Actions
- Previewing Actions
- Revisions Actions
- Roles Actions
- Time Entries Actions
- Time Entry Activities Actions
- Types Actions
- User Preferences Actions
- Wiki Pages Actions
- Work Schedule Actions
- Meetings Actions
- Values Property Actions
- Projects Actions
- Queries Actions
- Users Actions
- Statuses Actions
- Versions Actions
- Work Packages Actions
- Get Project Work Package Collection
- Create Project Work Package
- List Work Package File Links
- Form Create Work Package In Project
- Project Available Assignees
- List Work Packages
- Create Work Package
- Form Create Work Package
- List Work Package Schemas
- View Work Package Schema
- Delete Work Package
- View Work Package
- Update Work Package
- List Work Package Activities
- Comment Work Package
- Work Package Available Assignees
- Available Projects For Work Package
- List Available Relation Candidates
- Available Watchers
- Create Work Package File Link
- Form Edit Work Package
- Revisions
- Reminders
- List Watchers
- Add Watcher
- Remove Watcher
- Views Actions
Overview
This node interacts with the OpenProject API to list available actions capabilities. It allows users to retrieve a filtered and sorted list of actions defined in OpenProject, which can be useful for automation workflows that depend on specific project actions or permissions.
Common scenarios include:
- Fetching a subset of actions based on certain criteria (e.g., action IDs).
- Integrating OpenProject actions into custom workflows.
- Auditing or displaying available actions programmatically.
For example, you might use this node to get all actions related to membership creation or filter out specific actions by their IDs.
Properties
| Name | Meaning |
|---|---|
| Filters | JSON string specifying filter conditions to narrow down the list of actions. Supports filtering by id to return only actions matching given IDs or exclude them. The format matches the OpenProject queries endpoint filters. Example: [{"id": {"operator": "=", "values": ["memberships/create"]}}] |
| Sort By | JSON string specifying sort criteria for the returned actions. Currently, no sorting is supported, so this property has no effect but must be provided in the expected format. Example default: [["id", "asc"]] |
Output
The node outputs a JSON array containing the list of actions matching the specified filters and sort criteria. Each item in the output corresponds to an action capability object as defined by the OpenProject API.
No binary data output is produced by this node.
Dependencies
- Requires an active connection to an OpenProject instance via its REST API.
- Needs an API authentication token or key configured in n8n credentials to authorize requests.
- The base URL of the OpenProject server must be set in the node's credential configuration.
Troubleshooting
- Invalid Filter Format: If the
FiltersJSON is malformed or uses unsupported fields, the API may reject the request. Ensure the JSON syntax is correct and only supported filters likeidare used. - Authentication Errors: Missing or incorrect API credentials will cause authorization failures. Verify the API key/token and base URL in the credentials.
- Empty Results: If no actions match the filter criteria, the output will be an empty array. Adjust filters accordingly.
- Unsupported Sorting: Although a
Sort Byproperty exists, sorting is not currently supported by the API endpoint. Providing sort criteria will have no effect.
Links and References
- OpenProject API Queries Endpoint Documentation
- OpenProject Actions API Overview (general reference)