uChat

Integração com a API do uChat

Overview

This node integrates with the uChat API to manage contacts (subscribers). Specifically, the 'Criar' operation under the 'Contato' resource allows users to create a new contact by providing details such as first name, last name, email, and phone number. This is useful for automating the addition of new contacts into the uChat system, for example, when capturing leads from a web form or syncing contacts from another system.

Use Case Examples

  1. Creating a new contact with first name, last name, email, and phone to add to the uChat subscriber list.
  2. Automating contact creation in uChat when a new user signs up on a website.

Properties

Name Meaning
Primeiro Nome First name of the contact.
Sobrenome Last name of the contact.
Email Email address of the contact.
Telefone Phone number of the contact.

Output

JSON

  • first_name - First name of the created contact.
  • last_name - Last name of the created contact.
  • email - Email address of the created contact.
  • phone - Phone number of the created contact.
  • user_ns - Unique identifier of the created contact in uChat.

Dependencies

  • Requires an API key credential for uChat API authentication.

Troubleshooting

  • Common issues include invalid or missing API credentials, which will cause authentication errors when calling the uChat API.
  • If required fields like email are missing or invalid, the API may reject the creation request.
  • Network issues or incorrect base URL configuration can cause request failures.
  • Error messages from the API are propagated and should be checked for details, such as invalid parameters or rate limits.

Links

  • uChat API Documentation - Official API documentation for uChat, useful for understanding available endpoints and request formats.

Discussion