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 allows you to execute a custom action within the "Custom Actions" resource of an external system (likely OpenProject, based on context). It is designed to trigger predefined custom actions by their identifier, optionally sending additional data such as links and lock version information. This can be useful in workflows where you want to automate specific operations or business logic encapsulated as custom actions in the target system.
Practical examples include:
- Triggering a workflow step that updates related work packages.
- Executing a custom validation or state change defined as a custom action.
- Automating integration points where custom actions represent API endpoints for specialized tasks.
Properties
| Name | Meaning |
|---|---|
| Id | The numeric identifier of the custom action to execute. |
| Links | JSON object representing related entities or references to send along with the request. |
| Lock Version | A string value used for optimistic locking to ensure the action applies to the correct version of the resource. |
Output
The node outputs the JSON response returned from executing the custom action. This typically contains the result or status of the executed action, including any updated data or confirmation messages.
If the node supports binary data output, it would represent files or attachments related to the custom action execution, but this is not indicated in the provided code or properties.
Dependencies
- Requires an API key credential to authenticate requests against the external system's API.
- Needs the base URL of the API endpoint configured in credentials.
- Depends on the external system supporting custom actions accessible via its REST API.
Troubleshooting
Common issues:
- Invalid or missing custom action ID will cause the API call to fail.
- Incorrect or expired API credentials will lead to authentication errors.
- Sending malformed JSON in the "Links" property may cause request parsing errors.
- Using an outdated lock version might result in conflict errors due to concurrent modifications.
Error messages and resolutions:
- "Unauthorized" or "Authentication failed": Verify API credentials and permissions.
- "Not Found" or "Custom action does not exist": Check that the provided Id corresponds to an existing custom action.
- "Conflict" or "Lock version mismatch": Refresh the lock version from the latest resource state before retrying.
- "Bad Request": Ensure JSON syntax in the Links property is valid and all required fields are correctly set.