mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node allows updating a user's account information by sending personal data to an external API. It is useful in scenarios where you need to programmatically modify user details such as their first and last names within an automated workflow. For example, it can be used to update user profiles in a customer management system or synchronize user data across platforms.

Properties

Name Meaning
Person The user's personal information to update, provided as a JSON object. Typical fields include firstName and lastName. Example: { "firstName": "Ada", "lastName": "Lovelace" }

Output

The node outputs JSON data representing the response from the API after attempting to update the user account. This typically includes confirmation of the updated user details or error information if the update failed. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential for authenticating with the mittwald mStudio API.
  • The node sends requests to the base URL https://api.mittwald.de.
  • The request content type is JSON (application/json).

Troubleshooting

  • Invalid or missing API credentials: Ensure the API key credential is correctly configured in n8n.
  • Malformed JSON in the Person property: The person input must be valid JSON. Invalid JSON will cause errors when parsing.
  • API errors: If the API returns an error (e.g., due to invalid data or permissions), check the response message for details and verify the input data.
  • Network issues: Confirm network connectivity to https://api.mittwald.de.

Links and References

Discussion