Actions16
Overview
This node interacts with the Atomic BI API to perform operations on various resources. Specifically, for the Users - Create operation, it allows creating new user entries in the Atomic BI system. This is useful in scenarios where you want to automate user management, such as onboarding new team members or synchronizing users from another system.
For example, you could use this node to programmatically add a new user with specific attributes like username, email, and role, directly from your workflow without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Select | List of fields to select from the created user record. Leave empty to select all fields. Options include: Id, Username, Name, Created At, Updated At, Email, Role, Api Key |
Note: The "Select" property lets you specify which user fields you want returned after creation. If left empty, all fields are returned.
Output
The output contains JSON data representing the created user object. The structure includes the fields selected via the "Select" property. For example, if you select "Id" and "Email", the output JSON will contain those fields for the newly created user.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Atomic BI API.
- The node depends on the Atomic BI API being accessible at the configured base URL.
- No additional external dependencies beyond the Atomic BI API client bundled within the node.
Troubleshooting
- Invalid operation error: If you attempt an unsupported operation (other than "GET" as per the current code), the node throws an error indicating an invalid operation. Ensure you select the correct operation supported by the node.
- Authentication errors: If the API key is missing or invalid, requests to the Atomic BI API will fail. Verify that the API key credential is correctly configured.
- Empty or incorrect field selection: If the "Select" property is misconfigured or references non-existent fields, the API may return incomplete data or errors. Use only valid field names as listed in the options.
Links and References
- Atomic BI API Documentation (hypothetical link, replace with actual if available)
- n8n Documentation on Creating Custom Nodes