mittwald icon

mittwald

Interact with mittwald mStudio API

Actions409

Overview

This node allows updating a user's personal information in the mittwald mStudio system. It is useful when you need to programmatically modify details such as the first name, last name, or other personal attributes of a user identified by their user ID. Typical use cases include synchronizing user data from external systems, correcting user profile information, or automating user management workflows.

Properties

Name Meaning
User Id The identifier of the user to update. Can be "self" to refer to the current user or a specific user ID string.
Person A JSON object containing the user's personal information fields to update, e.g., first name and last name. Example: { "firstName": "Ada", "lastName": "Lovelace" }

Output

The node outputs JSON data representing the updated user information as returned by the mittwald mStudio API. This typically includes the new state of the user's personal details after the update operation. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential for authentication with the mittwald mStudio API.
  • The node sends requests to https://api.mittwald.de.
  • The request content type is JSON (application/json).
  • No additional environment variables are explicitly required beyond the API credential.

Troubleshooting

  • Invalid User Id: If the provided user ID does not exist or is invalid, the API may return an error. Verify the user ID or use "self" if updating the authenticated user's info.
  • Malformed JSON in Person Property: The person property expects valid JSON. Ensure the JSON syntax is correct to avoid parsing errors.
  • Authentication Errors: Ensure the API key credential is correctly configured and has sufficient permissions to update user data.
  • API Rate Limits or Network Issues: Temporary failures might occur due to network problems or API rate limiting; retrying after some time may help.

Links and References

Discussion