Actions10
- Blocklet Actions
- Tag Actions
- User Actions
Overview
This node interacts with a Blocklet Service API to manage tags among other resources. Specifically, the "Create Tag" operation allows users to create a new tag by specifying its title, color, and description. This is useful in scenarios where you want to categorize or label items dynamically within your workflows, such as tagging users, content, or other entities for easier filtering and organization.
Practical examples:
- Automatically creating tags based on user input or external data.
- Organizing content by generating descriptive tags with specific colors.
- Enhancing workflow automation by programmatically managing tags.
Properties
| Name | Meaning |
|---|---|
| Title | The title or name of the tag to be created. |
| Color | The color associated with the tag, represented as a hex color code (e.g., #4B5563). |
| Description | A textual description providing more details about the tag. |
Output
The node outputs JSON data representing the newly created tag object returned from the Blocklet Service API. This typically includes the tag's unique identifier, title, color, description, and possibly other metadata provided by the service.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential to authenticate requests against the Blocklet Service API.
- The node depends on the
blockletServiceApiRequestfunction to communicate with the external API. - No additional environment variables are explicitly required beyond the API authentication setup.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing empty or invalid values for required properties like "Title" may result in API errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Not implemented tag action: createTag": Indicates a misconfiguration or unsupported operation; ensure the operation parameter is correctly set to "createTag".- API error messages related to validation (e.g., missing title) should be resolved by providing all required fields properly.
Resolution tips:
- Verify that the API key credential is correctly configured and has necessary permissions.
- Ensure all required input properties are filled out correctly.
- Check network connectivity and API endpoint availability.
Links and References
- Blocklet Service API Documentation (example placeholder link)
- n8n documentation on Creating Custom Nodes