Actions116
- 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
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- Enroll 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 a particular email campaign.
Practical examples:
- Fetching the excluded list details before sending an email campaign to ensure certain contacts are not targeted.
- Auditing or reporting on excluded lists linked to campaigns to verify compliance with marketing rules or preferences.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign for which the excluded list is associated. |
| List ID | The unique identifier of the excluded list to retrieve details for. |
Output
The output JSON contains the data returned by the Mindz API for the specified excluded list of the email campaign. It typically includes properties describing the excluded list such as its ID, name, and possibly metadata related to exclusion criteria or timestamps.
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 deals with JSON data.
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 Email Campaign ID and List ID being valid.
Troubleshooting
Common issues:
- Invalid or missing Email Campaign ID or List ID parameters will cause the API call to fail.
- Network connectivity problems or expired API credentials can prevent successful retrieval.
- If the specified excluded list does not exist for the given campaign, the API may return a "not found" error.
Error messages and resolutions:
- "Unauthorized" or "Invalid credentials": Check that the API authentication token is correctly set up and has not expired.
- "Resource not found": Verify that both the Email Campaign ID and List ID are correct and correspond to existing entities.
- "Network error": Ensure your server or environment has internet access and can reach the Mindz API endpoint.
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/