uChat

Integração com a API do uChat

Overview

This node integrates with the uChat API to manage contacts (subscribers). Specifically, the 'Atualizar' operation updates the details of an existing contact identified by a unique user identifier (user_ns). It allows updating fields such as first name, last name, email, and phone number. This operation is useful for keeping contact information current in marketing, customer support, or CRM workflows.

Use Case Examples

  1. Updating a subscriber's email and phone number after receiving new contact information.
  2. Correcting a subscriber's name details in the contact list.

Properties

Name Meaning
User NS Unique identifier of the contact to update (user_ns). This is required to specify which contact to update.
Update Fields Collection of fields to update for the contact, including first name, last name, email, and phone number.

Output

JSON

  • user_ns - Unique identifier of the updated contact.
  • first_name - Updated first name of the contact.
  • last_name - Updated last name of the contact.
  • email - Updated email address of the contact.
  • phone - Updated phone number of the contact.

Dependencies

  • Requires an API key credential for uChat API authentication.

Troubleshooting

  • Ensure the 'User NS' is correctly provided and corresponds to an existing contact; otherwise, the update will fail.
  • Verify that the API key credential for uChat is valid and has the necessary permissions to update subscriber data.
  • If the update fields are empty or invalid, the API may return an error; provide at least one valid field to update.

Links

  • uChat API Documentation - Official API documentation for uChat, useful for understanding available endpoints and data structures.

Discussion