Actions115
- Course Actions
- Bundle Actions
- Course Grade Actions
- Course Grade Detail Actions
- Course Teacher Actions
- Email Actions
- Email Campaign Actions
- Email Campaign Course Actions
- Email Campaign Excluded Course Actions
- Email Campaign Excluded List Actions
- Enroll Actions
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- MindzPay Account Actions
- MindzPay Invoice Actions
- MindzPay Payment Actions
- MindzPay Subscription Actions
- Subscription Actions
- Team Actions
- User Actions
Overview
The node integrates with the Mindz API to manage email campaign lists. Specifically, the Email Campaign List - Create operation adds a specified list to an existing email campaign. This is useful for marketers or administrators who want to dynamically associate contact lists with email campaigns to target specific audiences.
Practical examples:
- Adding a new subscriber list to an ongoing promotional email campaign.
- Automating the inclusion of segmented user groups into targeted email campaigns based on external triggers.
- Managing multiple mailing lists within a single campaign programmatically.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign to which the list will be added. |
| List ID | The unique identifier of the list that should be added to the specified email campaign. |
Output
The node outputs JSON data representing the result of adding the list to the email campaign. Typically, this includes confirmation details such as success status, IDs involved, and possibly metadata about the updated campaign list association.
If the API supports it, binary data output is not expected for this operation since it deals with resource linking rather than file or media transfer.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based authentication credential.
- The node depends on proper configuration of the Mindz API credentials in n8n.
- Network access to the Mindz API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing Email Campaign ID or List ID parameters will cause the operation to fail.
- Authentication errors if the OAuth2 token is expired or misconfigured.
- API rate limits or network connectivity problems may interrupt the request.
Error messages and resolutions:
- "Invalid campaign ID" — Verify that the provided Email Campaign ID exists and is correctly formatted.
- "Invalid list ID" — Ensure the List ID corresponds to an existing list in the Mindz system.
- "Authentication failed" — Re-authenticate or update the OAuth2 credentials.
- "API request limit exceeded" — Wait and retry after some time or check API usage quotas.
Links and References
- Mindz API Documentation (hypothetical link)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- General n8n Node Development: https://docs.n8n.io/integrations/creating-nodes/