Actions42
- Item Actions
- Banking Actions
- Contact Actions
- Invoice Actions
- Order Actions
- Quote Actions
Overview
This node interacts with the Bexio API to retrieve multiple contacts. It supports fetching either all contacts or a limited number of contacts, with options to sort the results by a specified field. This is useful for scenarios where you need to synchronize or analyze customer or supplier data from Bexio, such as exporting contact lists for marketing or reporting purposes.
Use Case Examples
- Retrieve all contacts from Bexio to export to a CRM system.
- Fetch a limited number of contacts sorted by their ID for quick review or processing.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all contact results or only up to a given limit. |
| Limit | Maximum number of contact results to return when 'Return All' is false. |
| Order By | Field to sort the contact results by. |
Output
JSON
id- Unique identifier of the contact.name- Name of the contact.email- Email address of the contact.phone- Phone number of the contact.address- Address details of the contact.created_at- Timestamp when the contact was created.updated_at- Timestamp when the contact was last updated.
Dependencies
- Bexio API with appropriate API key credentials
Troubleshooting
- Ensure the Bexio API credentials are correctly configured and have the necessary permissions to access contact data.
- If the node returns an error about limits, check that the 'Limit' parameter is within the allowed range (1 to 2000).
- Network or API downtime can cause request failures; verify connectivity and Bexio service status.
- Errors related to sorting might occur if the 'Order By' field is invalid or unsupported by the API.
Links
- Bexio API Documentation - Official documentation for the Bexio API, including endpoints for contacts.