Actions22
- App Actions
- Account Actions
- Channel Actions
- Message Actions
- Template Actions
- Contact Actions
- Tag Actions
- User Actions
- Team Actions
- Webhook Actions
Overview
The node provides integration with the Poli API, allowing users to manage various resources such as apps, accounts, channels, messages, templates, contacts, tags, users, teams, and webhooks. Specifically, for the Tag resource with the Create Tags operation, the node enables creating new tags within a specified account.
This functionality is useful in scenarios where you want to organize or categorize entities (like contacts) by tagging them dynamically through n8n workflows. For example, after importing contacts, you might create specific tags to segment them for targeted messaging campaigns.
Properties
| Name | Meaning |
|---|---|
| Account ID | The identifier of the account under which the tag will be created. |
| Tag Name | The name of the tag to be created. |
Output
The output JSON contains the details of the newly created tag as returned by the Poli API. This typically includes fields such as the tag's unique identifier, name, and associated account information.
The node does not explicitly mention binary data output for this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Poli API.
- The node depends on the Poli API service being accessible and properly configured.
- No additional environment variables are indicated beyond the required API authentication.
Troubleshooting
- Resource or Operation Not Found Errors: If the node throws errors like
Resource 'tag' não encontradoorOperação 'create' não encontrada para o resource 'tag', verify that the resource and operation names are correctly set in the node parameters. - Authentication Issues: Ensure that the API key credential is valid and has sufficient permissions to create tags.
- Invalid Input Data: Missing or incorrect
Account IDorTag Namemay cause the API to reject the request. Double-check these inputs before execution. - API Connectivity: Network issues or Poli API downtime can cause failures; check connectivity and API status.
Links and References
- Poli API Documentation (Assumed URL, replace with actual if known)
- n8n Documentation on Creating Custom Nodes