mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node operation allows a user to confirm a password reset by providing a new password along with a valid reset token and the user ID. It is typically used in scenarios where a user has requested a password reset, received a reset token (usually via email), and now needs to finalize the process by setting a new password. This operation ensures that only users with a valid token can update their password, enhancing security.

Practical examples:

  • A user forgets their password, requests a reset, receives a token, and uses this node to set a new password.
  • An admin triggers a password reset flow for a user, who then confirms it using this operation.

Properties

Name Meaning
Password The new password to set for the user.
Token The password reset token that verifies the legitimacy of the request.
User Id The unique identifier of the user whose password is being reset.

Output

The output JSON contains the response from the API confirming the password reset status. Typically, this will include success confirmation or error details if the reset failed. There is no indication of binary data output for this operation.

Dependencies

  • Requires an API key credential for authentication with the mittwald mStudio API.
  • The node communicates with the mittwald API endpoint at https://api.mittwald.de.
  • Proper configuration of the API credentials within n8n is necessary for successful execution.

Troubleshooting

  • Invalid Token Error: If the provided token is expired or incorrect, the API will reject the request. Ensure the token is copied correctly and is still valid.
  • User Not Found: If the user ID does not exist or is incorrect, the reset will fail. Verify the user ID before submitting.
  • Password Policy Violations: The new password might need to meet certain complexity requirements enforced by the API. Check the API documentation for password rules.
  • Authentication Failures: Ensure the API key credential is correctly configured and has the necessary permissions.
  • Network Issues: Connectivity problems with the mittwald API endpoint can cause failures; verify network access.

Links and References

Discussion