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
This node interacts with the Mindz API to manage email campaign excluded lists. Specifically, the Create operation for the Email Campaign Excluded List resource allows users to add a list to the exclusion lists of an email campaign. This means that the specified list will be excluded from receiving emails sent as part of the campaign.
Common scenarios where this node is beneficial include:
- Preventing certain groups or segments (represented by lists) from receiving specific email campaigns.
- Managing exclusions dynamically based on business logic or user interactions.
- Automating marketing workflows where some contacts should be excluded from particular campaigns.
For example, if you have an email campaign targeting all customers but want to exclude those who have already purchased a product, you can add their list to the excluded lists using this node.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign to which you want to add an excluded list. |
| List ID | The unique identifier of the list that you want to add to the excluded lists of the campaign. |
Output
The node outputs JSON data representing the result of adding the specified list to the email campaign's excluded lists. The exact structure depends on the Mindz API response but typically includes confirmation details such as IDs and status of the exclusion addition.
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based API key credential configured in n8n.
- The node depends on the Mindz API being accessible and the provided campaign and list IDs being valid within the Mindz system.
Troubleshooting
- Invalid or missing Email Campaign ID or List ID: Ensure both IDs are correctly provided and correspond to existing entities in Mindz.
- Authentication errors: Verify that the API credentials are correctly set up and have sufficient permissions.
- API connectivity issues: Check network access to the Mindz API endpoint.
- Operation not supported or unexpected errors: Confirm that the Mindz API supports adding excluded lists for the given campaign and that the node version matches the API capabilities.
Links and References
- Mindz API documentation (refer to the official Mindz API docs for detailed endpoints and payloads)
- n8n OAuth2 credential setup guide
- General n8n node development documentation