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 Plans." Specifically, the Delete operation removes an excluded plan from a specified email campaign. This is useful when you want to update the targeting of an email campaign by removing certain plans that should no longer be excluded from receiving the campaign.
Practical example:
If you previously excluded a subscription plan from an email campaign but now want users on that plan to receive the campaign emails, you would use this Delete operation to remove that exclusion.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign from which you want to remove the excluded plan. |
| Plan ID | The unique identifier of the plan that you want to remove from the excluded list of the email campaign. |
Output
The output JSON will typically contain the response from the Mindz API confirming the deletion of the excluded plan from the email campaign. This may include status information or confirmation details indicating success.
No binary data output is expected for 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 Plan ID parameters will cause the operation to fail.
- Authentication errors if the API credentials are not set up correctly or have expired.
- Network connectivity problems can prevent communication with the Mindz API.
Error messages and resolutions:
- "Unauthorized" or "Authentication failed": Check and refresh your API credentials.
- "Resource not found": Verify that the provided Email Campaign ID and Plan ID exist and are correct.
- "Bad Request": Ensure all required parameters are provided and valid.
- Timeouts or network errors: Confirm network connectivity and Mindz API availability.
Links and References
- Mindz API Documentation (hypothetical link, replace with actual)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- General n8n Node Development: https://docs.n8n.io/integrations/creating-nodes/