bexio Additional Addresses
bexio_additional_addressesCreate, list, search, update, and delete additional addresses (e.g., delivery addresses) for a contact using contact ID.
Instructions
Manage additional addresses of a contact (e.g. delivery addresses). Every action requires contact_id (the parent contact). Actions: "list" (contact_id; optional limit/offset/order_by [id|name|postcode|country_id, append "_desc"]), "search" (contact_id + search_criteria; useful searchable fields: name, postcode, city, country_id), "get" (contact_id + id), "create" (contact_id + payload; provide at least name), "update" (contact_id + id + payload of fields to change), "delete" (contact_id + id — destructive, cannot be undone).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Additional address id (required for get/update/delete) | |
| limit | No | Maximum number of results (default 500, max 2000) | |
| action | Yes | Operation to perform | |
| offset | No | Number of results to skip (pagination) | |
| payload | No | Additional address fields. Provide at least name on create. The legacy combined "address" field is deprecated (read-only); use street_name/house_number/address_addition. | |
| order_by | No | Field to order by; append "_desc" for descending (e.g. "id_desc") | |
| contact_id | Yes | Id of the parent contact (required for every action) | |
| search_criteria | No | Search conditions, combined with logical AND |