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 provides integration with the Mindz API, specifically allowing management of email campaign plans among many other resources. For the Email Campaign Plan resource, the Delete operation enables users to remove a specific plan associated with an email campaign by specifying both the email campaign ID and the plan ID.
This operation is useful in scenarios where you want to clean up or modify your email marketing strategies by removing outdated or incorrect campaign plans. For example, if a particular campaign plan is no longer relevant or was created by mistake, this node operation can delete it programmatically within an automated workflow.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign from which the plan will be deleted. |
| Plan ID | The unique identifier of the specific plan within the email campaign to be deleted. |
Output
The output JSON structure typically contains confirmation details about the deletion operation. This may include success status, IDs of the deleted plan and campaign, or error messages if the deletion failed.
Since the source code does not explicitly show the output format, expect a standard response indicating whether the deletion was successful. No binary data output is expected for this operation.
Dependencies
- Requires an active connection to the Mindz API.
- Requires an API authentication token (OAuth2 or similar) configured in n8n credentials to authorize requests.
- The node depends on the Mindz API endpoints for managing email campaigns and their plans.
Troubleshooting
Common Issues:
- Invalid or missing Email Campaign ID or Plan ID will cause the operation to fail.
- Authentication errors if the API key or OAuth token is invalid or expired.
- Network connectivity issues preventing access to the Mindz API.
- Attempting to delete a plan that does not exist or has already been deleted.
Error Messages:
- "Unauthorized" or "Authentication failed": Check and refresh your API credentials.
- "Plan not found": Verify that the provided Plan ID exists under the specified Email Campaign ID.
- "Invalid parameters": Ensure all required fields are correctly filled and formatted.
- "Network error": Confirm internet connectivity and API endpoint availability.
Resolving these usually involves verifying input parameters, refreshing credentials, and ensuring the Mindz API service is operational.
Links and References
- Mindz API Documentation (general reference for API endpoints and authentication)
- n8n Documentation on creating and using custom nodes
- OAuth2 Authentication setup guides in n8n