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 various resources including Email Campaigns. For the Email Campaign - Delete operation, it enables users to delete an existing email campaign by specifying its unique identifier. This is useful in scenarios where outdated or incorrect campaigns need to be removed from the system to maintain clean and relevant marketing data.
Practical examples:
- Automatically deleting email campaigns that are no longer active or needed.
- Cleaning up test or duplicate campaigns created during development or testing phases.
- Removing campaigns that were scheduled but later canceled.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign to delete. This is a required string input. |
Output
The output of the delete operation typically contains a JSON object indicating the result of the deletion request. This may include confirmation of successful deletion or details about any errors encountered.
Since the source code does not explicitly show the output structure, the typical output for such operations includes:
- A success flag or status message confirming the campaign was deleted.
- Possibly the ID of the deleted campaign.
- Error information if the deletion failed.
No binary data output is expected for this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2 authentication credential.
- The node depends on the Mindz API being accessible and the provided API key/token having sufficient permissions to delete email campaigns.
- No additional external services are indicated.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Email Campaign ID will likely result in an error response from the API.
- Insufficient permissions or expired authentication tokens can cause authorization failures.
- Network connectivity problems may prevent communication with the Mindz API.
Error messages and resolutions:
- "Campaign not found" — Verify the Email Campaign ID is correct and exists.
- "Unauthorized" or "Authentication failed" — Check that the API credentials are valid and have not expired.
- "Network error" — Ensure stable internet connection and that the Mindz API endpoint is reachable.
Links and References
- Mindz API Documentation (general reference for API endpoints and authentication)
- n8n OAuth2 Credential Setup Guide (for configuring API authentication)
Note: Specific URLs are not provided as they depend on the user's environment and Mindz's official documentation.