Bizwachat icon

Bizwachat

Interact with Bizwachat API

Overview

This node interacts with the Bizwachat API to retrieve contact information based on a unique identifier (UUID). Specifically, the "Get Contact By Uuid" operation fetches detailed data about a single contact using its UUID. This is useful in scenarios where you need to look up or verify contact details stored in Bizwachat, such as for customer support, marketing automation, or CRM synchronization.

Practical examples:

  • Fetching a customer's contact details when processing a support ticket.
  • Retrieving contact info to personalize marketing messages.
  • Synchronizing contact records between Bizwachat and another system.

Properties

Name Meaning
Uuid The unique identifier of the contact to retrieve. This is a required string input that specifies which contact's details to fetch from Bizwachat.

Output

The node outputs JSON data representing the contact details retrieved from Bizwachat. The structure typically includes fields such as contact name, phone number, email, and other metadata associated with the contact in Bizwachat.

If the API supports it, binary data output is not indicated in the provided code or properties, so the output is expected to be purely JSON.

Dependencies

  • Requires an active connection to the Bizwachat API.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • The base URL for API requests is https://bizwachat.com.
  • The node uses standard HTTP headers for JSON content (Accept: application/json, Content-Type: application/json).

Troubleshooting

  • Invalid or missing UUID: Ensure the UUID property is provided and correctly formatted; otherwise, the API call will fail or return no data.
  • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
  • Network issues: Check connectivity to https://bizwachat.com and ensure no firewall or proxy blocks the request.
  • Unexpected API responses: If the contact does not exist or the UUID is incorrect, the API may return an error or empty response. Validate the UUID before making the request.

Links and References

Discussion