Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node provides integration with the Mindz API, specifically allowing management of email campaign excluded lists. The "Delete" operation under the "Email Campaign Excluded List" resource enables users to remove a specific excluded list from an email campaign. This is useful when you want to update or clean up the exclusion criteria for your email campaigns, ensuring that certain contacts or lists are no longer excluded from receiving emails.

Practical examples include:

  • Removing a previously excluded contact list from an email campaign to allow those contacts to receive future emails.
  • Managing dynamic marketing segments by programmatically updating exclusions based on campaign performance or user behavior.

Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign from which the excluded list will be removed.
List ID The unique identifier of the excluded list to delete from the specified email campaign.

Output

The output JSON typically contains confirmation details about the deletion operation. It may include fields such as success status, IDs of the affected campaign and list, or any relevant metadata returned by the Mindz API confirming the removal.

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 configured in n8n.
  • The node depends on the Mindz API endpoints related to email campaign excluded lists.
  • Proper permissions on the Mindz account to modify email campaign settings are 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 credentials can result in authentication errors.
    • Attempting to delete a non-existent excluded list or from a non-existent campaign may return not found errors.
  • Error Messages:

    • "Unauthorized" or "Authentication failed": Check that the API credentials are valid and have not expired.
    • "Resource not found": Verify that the provided Email Campaign ID and List ID exist and are correct.
    • "Missing required parameter": Ensure both Email Campaign ID and List ID are provided and correctly formatted.

Resolving these usually involves verifying input parameters, refreshing credentials, and checking user permissions on the Mindz platform.

Links and References

  • Mindz API Documentation (hypothetical link)
  • n8n OAuth2 Credential Setup Guide
  • Mindz Email Campaign Management Best Practices

Discussion