Konverte Digital icon

Konverte Digital

Interact with Konverte Digital API

Actions115

Overview

This node interacts with the Konverte Digital API to list contacts associated with a specific account. It is useful for scenarios where you need to retrieve and manage contact information from an account, such as in CRM integrations, marketing automation, or customer support workflows. For example, you can use it to fetch a sorted list of contacts by name or email, paginate through large contact lists, and customize request options like batching and timeout settings.

Use Case Examples

  1. Retrieve a list of contacts sorted by name for account ID 123.
  2. Fetch contacts page by page to process large datasets without overwhelming the API.
  3. Customize request options to handle SSL issues or use a proxy server.

Properties

Name Meaning
Account Id The numeric ID of the account whose contacts are to be listed.
Sort The attribute by which the contact list should be sorted, such as name, email, phone number, or last activity date, with options for ascending or descending order.
Page The page number of the contact list to retrieve, used for pagination.
Request Options Additional request settings including batching (to throttle requests), SSL certificate validation handling, proxy configuration, and request timeout duration.

Output

JSON

  • contacts - Array of contact objects retrieved from the account.
  • pagination - Information about the current page, total pages, and total contacts available.

Dependencies

  • Konverte Digital API

Troubleshooting

  • Ensure the Account Id is valid and has associated contacts; otherwise, the list may be empty.
  • If sorting by a specific attribute does not work, verify that the attribute name matches the API's expected values.
  • Timeout errors may occur if the server is slow; increase the timeout setting if needed.
  • SSL certificate errors can be bypassed by enabling the 'Ignore SSL Issues' option, but this reduces security.
  • Proxy settings must be correctly formatted; incorrect proxy URLs can cause connection failures.

Discussion