Actions16
Overview
This node interacts with the Hypris API to manage various resources such as databases, items, properties, views, workspaces, and resource items. Specifically, for the Database - Create operation, it allows users to create a new database within a specified workspace.
Typical use cases include automating the creation of databases in Hypris as part of a workflow, for example:
- Automatically setting up a new project workspace with its own database.
- Creating databases dynamically based on incoming data or triggers.
- Integrating Hypris database creation into larger automation pipelines.
Properties
| Name | Meaning |
|---|---|
| Workspace Name or ID | The workspace where the new database will be created. Choose from a list of available workspaces or specify an ID using an expression. |
| Database Name | The name to assign to the newly created database. |
Output
The node outputs JSON data representing the newly created database object returned by the Hypris API. This typically includes details such as the database ID, name, and other metadata provided by the API response.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Hypris API via credentials that include base URL, username, and password (or equivalent authentication).
- The node uses HTTP requests to communicate with the Hypris API endpoints.
- Proper configuration of the Hypris API credentials in n8n is necessary before using this node.
Troubleshooting
Common issues:
- Invalid or missing workspace ID: Ensure the workspace exists and the correct ID or name is selected.
- Authentication failures: Verify that the API credentials are correctly configured and have sufficient permissions.
- Network or API endpoint errors: Check network connectivity and that the Hypris API base URL is reachable.
Error messages:
- Errors related to loading workspaces or databases usually indicate credential or permission problems.
- If the node throws an error about missing required parameters, verify that both "Workspace Name or ID" and "Database Name" are provided.
- API request failures may return HTTP error codes; consult the Hypris API documentation for specific meanings.
Links and References
- Hypris API Documentation (hypothetical link, replace with actual if available)
- n8n Expressions Documentation
- n8n Credential Management
Note: This summary is based solely on static analysis of the provided source code and property definitions.