Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

The node provides integration with the Mindz API, allowing users to manage various resources such as subscriptions, courses, users, teams, and more. Specifically, for the Subscription resource with the Delete operation, this node enables users to delete a subscription plan by its ID.

This is useful in scenarios where you want to programmatically remove a subscription plan from your Mindz account, for example:

  • Cleaning up outdated or unused subscription plans.
  • Automating subscription lifecycle management.
  • Integrating subscription deletion into larger workflows like user offboarding or billing adjustments.

Properties

Name Meaning
Subscription Plan ID The unique identifier of the subscription plan to delete. This is a required string.

Output

The output JSON structure after deleting a subscription plan typically contains confirmation details about the deletion. While the exact structure depends on the Mindz API response, it usually includes fields such as:

  • Success status or confirmation message.
  • Possibly the ID of the deleted subscription plan.
  • Any error messages if the deletion failed.

The node does not explicitly mention binary data output for this operation.

Dependencies

  • Requires an active connection to the Mindz API via an OAuth2-based API key credential.
  • The node depends on the Mindz API being accessible and the provided credentials having sufficient permissions to delete subscription plans.
  • No additional external dependencies are indicated.

Troubleshooting

  • Common Issues:

    • Providing an invalid or non-existent Subscription Plan ID will likely result in an error.
    • Insufficient permissions or expired/invalid API credentials can cause authentication failures.
    • Network connectivity issues may prevent communication with the Mindz API.
  • Error Messages and Resolutions:

    • "Subscription Plan not found": Verify that the Subscription Plan ID is correct and exists.
    • "Unauthorized" or "Authentication failed": Check that the API credentials are valid and have the necessary scopes.
    • "Network error" or timeout: Ensure stable internet connection and that the Mindz API endpoint is reachable.

Links and References

  • Mindz API Documentation (Assumed URL; replace with actual)
  • OAuth2 Authentication setup guides for Mindz API
  • n8n documentation on creating and using API credentials

Discussion