Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

The node provides integration with the Mindz API, specifically allowing management of Email Campaign Plans. The "Delete" operation for the Email Campaign Plan resource 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 manage your email marketing campaigns by removing outdated or unwanted plans linked to campaigns. 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 to delete within the given email campaign.

Output

The output JSON typically contains the response from the Mindz API after attempting to delete the specified email campaign plan. This usually includes confirmation of deletion or error details if the operation failed.

No binary data output is expected from this operation.

Dependencies

  • Requires an active connection to the Mindz API.
  • Requires an API authentication token credential configured in n8n (referred generically as an API key credential).
  • The node depends on the Mindz OAuth2 API credentials for authorization.

Troubleshooting

  • Common issues:

    • Providing incorrect or non-existent Email Campaign ID or Plan ID will result in errors.
    • Insufficient permissions or invalid API credentials may cause authorization failures.
    • Network connectivity issues can prevent successful API calls.
  • Common error messages:

    • "Plan not found" — Verify that the Plan ID exists and belongs to the specified Email Campaign ID.
    • "Unauthorized" or "Invalid credentials" — Check that the API key credential is correctly set up and has necessary permissions.
    • "Network error" — Ensure stable internet connection and that the Mindz API endpoint is reachable.

Resolving these typically involves verifying input IDs, checking credential configuration, and ensuring network access.

Links and References

  • Mindz API Documentation (general reference for Email Campaign Plan endpoints)
  • n8n documentation on setting up API credentials and OAuth2 authentication

Discussion