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 a file link management system to create a new storage entry. It is particularly useful when you want to programmatically add storage locations for managing files, such as linking external storage services or defining internal storage spaces within a project management or file sharing environment.
A practical example would be automating the setup of storage configurations in a collaborative platform where multiple projects require dedicated storage areas. By using this node, users can streamline the creation of these storages without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Name | The name of the storage to create. If left empty, a default name will be used. |
| Application Password | The application password for Nextcloud storage integration. If provided as a string, it sets the password and enables automatic management. If null, it disables automatic management and unsets the password. Ignored if the storage provider is not Nextcloud. |
| Links | A JSON object defining API endpoint details for the storage creation request, including HTTP method and URL path. Typically preconfigured and rarely changed by users. |
Output
The node outputs JSON data representing the newly created storage resource. This JSON typically includes metadata about the storage such as its identifier, name, configuration details, and possibly status information. There is no indication that binary data is output by this node.
Dependencies
- Requires an API key or authentication token credential to connect securely to the target service.
- The base URL for the API must be configured in the node credentials.
- The node depends on the external API supporting storage creation via a POST request to the
/api/v3/work_packagesendpoint or similar, as indicated in the_linksproperty.
Troubleshooting
- Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing an incorrect or malformed JSON in the
Linksproperty may result in request errors. - If the
Application Passwordis set incorrectly for Nextcloud storage, the storage creation might fail or behave unexpectedly.
- Error messages:
- Authentication errors usually indicate invalid or missing API keys; verify credentials.
- Validation errors may occur if required properties like
Nameare missing or invalid; ensure all mandatory fields are correctly filled. - Network or endpoint errors suggest connectivity issues or incorrect API URLs; check the base URL and network access.
Links and References
- Nextcloud Storage Documentation
- OpenProject API Reference
- General REST API usage guidelines for file storage services