Actions23
- Channel Actions
- Message Actions
- Contact Actions
- Tickets Actions
Overview
The node provides functionality to search for contacts within the Bizwachat platform. It allows users to query contacts based on a search string and supports pagination to navigate through large sets of results. This node is useful in scenarios where you need to filter or find specific contacts from your Bizwachat account, such as retrieving customer details, segmenting contact lists, or integrating contact data into workflows.
Practical examples:
- Searching for contacts by name or email to send targeted messages.
- Retrieving a paginated list of contacts for reporting or synchronization with other systems.
- Filtering contacts dynamically based on user input or external triggers.
Properties
| Name | Meaning |
|---|---|
| Search | The search query string to filter contacts. |
| Page | The page number of the results to retrieve (for pagination). |
| Per Page | Number of contacts to return per page (controls page size). |
Output
The node outputs JSON data containing the search results for contacts. The structure typically includes an array of contact objects matching the search criteria, along with pagination metadata such as total count, current page, and items per page. This output can be used downstream in workflows to process or display contact information.
If binary data is returned (not indicated here), it would represent attachments or media related to contacts, but this node primarily deals with JSON contact data.
Dependencies
- Requires an API key credential for authenticating with the Bizwachat API.
- Depends on the Bizwachat REST API endpoint at
https://bizwachat.com. - The node expects JSON content-type headers for requests and responses.
Troubleshooting
- Empty results: Ensure the search query is correctly specified and matches existing contacts.
- Pagination issues: Verify that the
PageandPer Pagevalues are valid positive integers. - Authentication errors: Confirm that the API key credential is correctly configured and has necessary permissions.
- API connectivity: Check network access to
https://bizwachat.comand that the API service is operational. - Invalid parameter format: Make sure all input properties are provided as strings and conform to expected formats.
Links and References
- Bizwachat API Documentation (assumed URL for reference)
- n8n documentation on Using Credentials
- General info on Pagination in APIs