Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node interacts with the Mindz API to manage Email Campaigns among other resources. Specifically, for the Email Campaign - Get operation, it retrieves detailed information about a single email campaign identified by its unique ID. This is useful when you want to fetch the current status, content, or metadata of an existing email campaign within your marketing automation workflows.

Common scenarios:

  • Fetching details of a specific email campaign to display or process further.
  • Integrating Mindz email campaigns data into dashboards or reports.
  • Using campaign data to trigger conditional logic in automation based on campaign status or attributes.

Practical example:
You have an automation that monitors campaign performance and sends alerts if certain criteria are met. The "Get Email Campaign" operation can be used to retrieve the latest campaign info before evaluating those conditions.


Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign to retrieve. This is a required string input.

Output

The node outputs JSON data representing the full details of the requested email campaign. This typically includes fields such as campaign name, subject, content, status, send dates, recipient lists, and statistics depending on the API response.

If the node supports binary data output (not indicated here), it would represent attachments or exported campaign assets, but this operation primarily returns structured JSON data describing the campaign.


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 dependencies beyond the Mindz API and proper authentication.

Troubleshooting

  • Invalid Email Campaign ID: If the provided ID does not exist or is malformed, the API will likely return an error indicating the campaign was not found. Verify the ID correctness.
  • Authentication errors: Ensure the OAuth2 API credentials are correctly set up and have sufficient permissions to access email campaign data.
  • Network issues: Connectivity problems with the Mindz API endpoint may cause timeouts or failures.
  • API rate limits: Excessive requests might lead to throttling; handle retries or backoff accordingly.

Links and References

Discussion