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 interacts with the Mindz API to manage email campaign excluded lists. Specifically, the Get operation for the Email Campaign Excluded List resource retrieves details about a specific excluded list associated with an email campaign. This is useful when you want to fetch information about which contact lists have been excluded from receiving emails in a particular campaign.
Common scenarios:
- Verifying which lists are excluded from an ongoing or past email campaign.
- Auditing exclusion settings before sending out a campaign.
- Integrating with other systems to synchronize exclusion data.
Practical example:
You run an email marketing campaign and want to ensure that certain customer segments do not receive promotional emails. Using this node’s Get operation, you can retrieve the excluded lists for the campaign to confirm the exclusions are correctly set.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign for which you want to get the excluded list. |
| List ID | The unique identifier of the excluded list you want to retrieve details for. |
Output
The output JSON contains the details of the specified excluded list for the given email campaign. This typically includes metadata such as the list's ID, name, and possibly other attributes related to its exclusion status within the campaign.
If the node supports binary data output (not indicated here), it would represent any file or media content related to the excluded list, but this operation primarily returns JSON data.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based API key credential.
- The node depends on proper configuration of the Mindz API credentials within n8n.
- Network access to the Mindz API endpoint is necessary.
Troubleshooting
- Missing or invalid Email Campaign ID/List ID: The node requires both IDs to be valid and present. Errors will occur if these are missing or incorrect.
- Authentication errors: If the OAuth2 credential is expired or misconfigured, the node will fail to authenticate with the Mindz API.
- API rate limits or downtime: Temporary failures may happen due to API limits or service outages.
- Error messages: Common error responses might include "Not Found" if the IDs do not correspond to existing resources, or "Unauthorized" if credentials are invalid. Verify IDs and credentials accordingly.
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/