Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node interacts with the Mindz API to manage email campaign lists. Specifically, the Email Campaign List - List operation retrieves a paginated list of email campaign lists associated with a specified email campaign ID. This is useful for scenarios where you want to fetch and process multiple email campaign lists programmatically, such as syncing campaign data, analyzing campaign reach, or automating marketing workflows.

Practical examples:

  • Fetching all subscriber lists linked to a particular email campaign to analyze engagement.
  • Automating the export of email campaign lists for reporting or integration with other marketing tools.
  • Building dashboards that display email campaign performance metrics based on the lists involved.

Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign whose lists you want to retrieve.
Limit Maximum number of results to return in one request (minimum 1). Defaults to 50.
Offset Number of results to skip before starting to collect the output (for pagination). Defaults to 0.

Output

The node outputs JSON data representing the retrieved email campaign lists. Each item in the output corresponds to an individual email campaign list associated with the specified email campaign ID. The structure typically includes details such as list identifiers, names, and possibly metadata related to each list.

If the node supports binary data output (not indicated here), it would represent attachments or files related to the email campaign lists, but this operation primarily returns JSON data.

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 being accessible and the provided email campaign ID being valid.
  • No additional external services are required beyond the Mindz API.

Troubleshooting

  • Invalid Email Campaign ID: If the provided email campaign ID does not exist or is malformed, the API may return an error or empty results. Verify the ID is correct.
  • API Authentication Errors: Ensure the OAuth2 API credentials are correctly set up and have sufficient permissions to access email campaign lists.
  • Pagination Issues: If the limit or offset parameters are set incorrectly (e.g., negative numbers), the API might reject the request. Use valid positive integers.
  • Empty Results: If no lists are returned, confirm that the email campaign actually has associated lists.

Links and References

Discussion