Actions115
- Course Actions
- Bundle Actions
- Course Grade Actions
- Course Grade Detail Actions
- Course Teacher Actions
- Email Actions
- Email Campaign Actions
- Email Campaign Course Actions
- Email Campaign Excluded Course Actions
- Email Campaign Excluded List Actions
- Enroll Actions
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- MindzPay Account Actions
- MindzPay Invoice Actions
- MindzPay Payment Actions
- MindzPay Subscription Actions
- Subscription Actions
- Team Actions
- User Actions
Overview
The node interacts with the Mindz API to manage "Email Campaign Excluded Course" resources. Specifically, the List operation retrieves a list of courses that have been excluded from a particular email campaign. This is useful when you want to see which courses are intentionally omitted from receiving certain email campaigns, helping in targeted marketing or communication strategies.
Practical examples:
- A marketing team wants to verify which courses are excluded from an upcoming promotional email campaign.
- An administrator needs to audit exclusions to ensure no course is mistakenly left out.
- Automating reports on excluded courses for compliance or review purposes.
Properties
| Name | Meaning |
|---|---|
| Email Campaign ID | The unique identifier of the email campaign for which excluded courses are listed. |
| Limit | Maximum number of excluded courses to return in the response (minimum 1, default 50). |
| Offset | Number of excluded courses to skip before starting to collect the result set (default 0). |
Output
The output contains a JSON array listing the excluded courses associated with the specified email campaign. Each item in the array represents one excluded course and typically includes details such as course identifiers and related metadata as provided by the Mindz API.
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 or environment variables are explicitly required beyond the API credential.
Troubleshooting
Common issues:
- Invalid or missing Email Campaign ID will cause the API call to fail or return empty results.
- Network connectivity problems can prevent successful API requests.
- Pagination parameters (
limitandoffset) set incorrectly may lead to unexpected result counts or skipped data.
Error messages and resolutions:
- "Unauthorized" or "Authentication failed": Check that the API key credential is correctly configured and valid.
- "Resource not found": Verify that the Email Campaign ID exists and is correct.
- "Invalid parameter" errors: Ensure
limitis at least 1 andoffsetis zero or positive.
Links and References
- Mindz API Documentation (hypothetical link)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- Pagination concepts in APIs: https://restfulapi.net/pagination/