Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node interacts with the Mindz API to manage "Email Campaign Excluded Plan" resources, specifically supporting the List operation. This operation retrieves a list of plans that are excluded from a specified email campaign. It is useful when you want to see which subscription plans have been explicitly excluded from receiving a particular email campaign.

Common scenarios:

  • Marketing teams reviewing which subscription plans are excluded from an ongoing or planned email campaign.
  • Automating reports on email campaign targeting exclusions.
  • Integrating with other systems to synchronize exclusion lists for campaigns.

Practical example:
You have an email campaign promoting a new feature but want to exclude users on certain subscription plans from receiving it. Using this node's List operation, you can fetch all excluded plans for that campaign and verify or audit the exclusions programmatically.

Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign for which to list excluded plans.
Limit Maximum number of excluded plans to return in one response (minimum 1, default 50).
Offset Number of excluded plans to skip before starting to collect the result set (default 0).

Output

The output contains a JSON array of objects representing the excluded plans for the specified email campaign. Each object typically includes details such as plan identifiers and possibly metadata about the exclusion.

If the node supports pagination via limit and offset, the output will reflect the subset of excluded plans accordingly.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to the Mindz API using an OAuth2-based API key credential.
  • The node depends on proper configuration of this API authentication within n8n.
  • No additional external services are required beyond the Mindz API.

Troubleshooting

  • Common issues:

    • Invalid or missing Email Campaign ID: The API will not return results if the campaign ID is incorrect or not provided.
    • Authentication errors: Ensure the OAuth2 API credentials are valid and have sufficient permissions.
    • Pagination parameters (limit and offset) out of range or invalid may cause errors or empty responses.
  • Error messages:

    • "Unauthorized" or "Authentication failed": Check API credentials and token validity.
    • "Resource not found": Verify the Email Campaign ID exists in the Mindz system.
    • "Invalid parameter" related to limit/offset: Adjust these values to be within allowed ranges.

Links and References


This summary is based solely on static analysis of the provided source code and property definitions.

Discussion