bexio Users
bexio_usersRetrieve and manage bexio users, including read-only access to real users and full CRUD operations for fictional users who appear in dropdowns but cannot log in.
Instructions
Read bexio users and manage fictional users (fictional users appear in dropdowns but cannot log in). Actions: "list" (all users, optional limit/offset), "get" (user by id), "me" (the user authenticated by the current token), "list_fictional" (all fictional users, optional limit/offset), "get_fictional" (fictional user by id), "create_fictional" (payload required: salutation_type, firstname, lastname, email; optional title_id), "update_fictional" (id + payload of fields to change), "delete_fictional" (permanently delete a fictional user by id — cannot be undone), "permissions" (activated components and the full permission map of the logged-in user). Regular users are read-only via the API; only fictional users can be created, updated or deleted. is_superadmin/is_accountant are only included when the authenticated user is a superadmin.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | User id (required for "get") or fictional user id (required for get/update/delete_fictional) | |
| 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 | Fictional user fields. Required on create: salutation_type, firstname, lastname, email. |