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 provides integration with the Mindz API, allowing users to manage various Mindz resources such as email lists, courses, enrollments, and more. Specifically, for the Email List resource with the Update operation, this node enables updating properties of an existing email list in the Mindz system.
This is useful when you want to modify details of an email list, such as changing its name or slug, without creating a new list. For example, if you have an email marketing campaign and need to rename the target list or update its identifier (slug), this operation facilitates that directly from your workflow.
Properties
| Name | Meaning |
|---|---|
| Email List ID | The unique identifier of the email list you want to update. This is required. |
| Name | The new name to assign to the email list. |
| Slug | The new slug (a URL-friendly identifier) to assign to the email list. |
Output
The node outputs JSON data representing the updated email list object returned by the Mindz API after the update operation. This typically includes fields such as the email list's ID, name, slug, creation date, and other metadata reflecting the current state of the list.
No binary data output is expected from this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based authentication credential.
- The node depends on the Mindz API being accessible and the provided credentials having sufficient permissions to update email lists.
Troubleshooting
- Invalid Email List ID: If the provided Email List ID does not exist or is incorrect, the API will likely return an error indicating the resource was not found. Verify the ID before running the node.
- Insufficient Permissions: Errors related to authorization may occur if the API token lacks rights to update email lists. Ensure the connected credential has appropriate scopes.
- Empty Update Fields: If neither "Name" nor "Slug" is provided or both are empty, the update request might fail or have no effect. Provide at least one field to update.
- API Connectivity Issues: Network problems or API downtime can cause failures. Check connectivity and Mindz service status.
Links and References
- Mindz API Documentation (general reference): https://mindz.example.com/api-docs (replace with actual URL)
- OAuth2 Authentication setup in n8n: https://docs.n8n.io/credentials/oauth2/