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 resources such as users, courses, teams, enrollments, and more. Specifically, for the User - Delete operation, it enables deleting a user from the Mindz system by specifying their unique User ID.
This operation is useful in scenarios where you need to programmatically remove users, for example:
- Cleaning up test or inactive user accounts.
- Automating user lifecycle management workflows.
- Integrating Mindz user management into broader automation pipelines.
Properties
| Name | Meaning |
|---|---|
| User ID | The unique identifier of the user to delete. This is a required string input property. |
Output
The output JSON structure after executing the delete operation typically contains confirmation of the deletion or relevant status information returned by the Mindz API. It may include fields such as success status, deleted user ID, or error messages if the deletion failed.
No binary data output is expected from this operation.
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 credentials having sufficient permissions to delete users.
Troubleshooting
Common issues:
- Providing an invalid or non-existent User ID will likely result in an error response from the API.
- Insufficient permissions or expired/invalid API credentials can cause authentication errors.
- Network connectivity problems may prevent successful API calls.
Error messages and resolutions:
- "User not found" — Verify that the User ID is correct and exists in the Mindz system.
- "Unauthorized" or "Authentication failed" — Check that the API credentials are valid and have the necessary scopes.
- "Network error" — Ensure your server or environment has internet access and can reach the Mindz API endpoint.
Links and References
- Mindz API documentation (refer to official Mindz developer resources for detailed API specs).
- n8n OAuth2 credential setup guide for configuring API authentication.