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 lists. Specifically, the Get operation under the Email Campaign List resource retrieves details of a specific list associated with an email campaign. This is useful when you want to fetch information about a particular mailing list used in an email campaign, such as for reporting, validation, or further processing within your workflow.
Practical examples:
- Fetching the details of a subscriber list linked to a given email campaign to verify its contents.
- Retrieving list metadata before sending targeted follow-up campaigns.
- Integrating with other systems by pulling list data dynamically based on campaign IDs.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign from which you want to get the list details. |
| List ID | The unique identifier of the specific list within the email campaign to retrieve. |
Output
The node outputs JSON data representing the details of the specified email campaign list. This typically includes metadata about the list such as its name, description, subscriber count, creation date, and any other relevant attributes provided by the Mindz API.
If the node supports binary data output (not indicated here), it would represent attachments or files related to the list, but this operation primarily returns structured 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 endpoints that handle email campaign lists.
- Proper permissions on the Mindz account to access email campaign and list data are 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 empty or incorrect.
- Authentication errors: Ensure the OAuth2 credentials are correctly set up and have not expired.
- API rate limits or connectivity issues: Network problems or API throttling can cause failures; retry after some time or check network settings.
- Resource or operation mismatch: Selecting the wrong resource or operation combination may lead to unexpected errors.
Links and References
- Mindz API Documentation (hypothetical link as no real URL provided)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- General n8n Node Development: https://docs.n8n.io/integrations/creating-nodes/