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 provides integration with the Mindz API, specifically allowing management of email campaign lists. The "Delete" operation under the "Email Campaign List" resource enables users to remove a specific list from an email campaign by specifying both the email campaign ID and the list ID.
This operation is useful in scenarios where you want to dynamically manage the recipients of your email campaigns, for example:
- Removing outdated or irrelevant mailing lists from a campaign.
- Cleaning up campaign configurations before sending emails.
- Automating campaign list management as part of a larger marketing workflow.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign from which a list will be deleted. |
| List ID | The unique identifier of the list that should be removed from the specified email campaign. |
Output
The output JSON typically contains the result of the delete operation, such as a success confirmation or details about the deletion status. It may include fields like:
- Confirmation that the list was successfully removed.
- Any error messages if the deletion failed.
No binary data output is expected from this operation.
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
Common Issues:
- Invalid or missing Email Campaign ID or List ID parameters will cause the operation to fail.
- Insufficient permissions or expired API tokens can lead to authentication errors.
- Attempting to delete a list that does not exist in the specified campaign may return an error.
Error Messages:
- "Invalid Email Campaign ID" — Verify that the provided campaign ID is correct.
- "List not found in campaign" — Check that the list ID exists and is associated with the given campaign.
- "Authentication failed" — Ensure the API credentials are valid and have not expired.
Resolution Steps:
- Double-check input parameters for typos or incorrect values.
- Refresh or reconfigure API credentials if authentication issues occur.
- Confirm the existence of the list within the campaign before attempting deletion.
Links and References
- Mindz API Documentation (replace with actual URL)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- General n8n Node Development: https://docs.n8n.io/integrations/creating-nodes/