Mindz icon

Mindz

Interact with Mindz API

Actions115

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.

Discussion