Konverte Digital icon

Konverte Digital

Interact with Konverte Digital API

Actions115

Overview

This node updates a user on the platform by modifying their details such as name, email, password, and custom attributes. It is useful in scenarios where user information needs to be kept current or corrected, such as updating contact details or resetting passwords. For example, it can be used in customer management workflows to keep user profiles accurate.

Use Case Examples

  1. Updating a user's email address after they change their contact information.
  2. Resetting a user's password as part of a security protocol.
  3. Adding or modifying custom attributes to store additional user-specific data.

Properties

Name Meaning
Id The numeric ID of the user on the platform, used to identify which user to update.
Name The new name of the user to update.
Email The new email address of the user to update.
Password The new password for the user, which must contain uppercase, lowercase letters, a number, and a special character.
Custom Attributes Custom JSON attributes to associate with the user, allowing for flexible additional data storage.
Request Options Settings for request behavior such as batching, SSL certificate validation, proxy usage, and timeout duration.

Output

JSON

  • id - The unique identifier of the updated user.
  • name - The updated name of the user.
  • email - The updated email address of the user.
  • custom_attributes - The updated custom attributes associated with the user.

Dependencies

  • Requires an API key credential for authentication to the platform's API.

Troubleshooting

  • Ensure the user ID provided exists on the platform; otherwise, the update will fail.
  • Password must meet complexity requirements; otherwise, the API may reject the update.
  • If SSL certificate validation is disabled, be cautious of security risks.
  • Proxy settings must be correct if used, or requests may fail.
  • Timeouts may occur if the server is slow or unresponsive; adjust timeout settings accordingly.

Discussion