Transactions: get transaction by id_by_customer
transactions_get_by_idFetch a single bank transaction for a customer account using its per-customer ID. Retrieve the ID first via the transactions list, then get the full transaction data.
Instructions
🟢 READ-ONLY: Fetches data. Makes no changes to the accounting records.
get transaction by id_by_customer
Get a single transaction for a specified customer account by id_by_customer. You can get the "id_by_customer" by using the "/transactions/get method" first. The response includes an array of transaction data.
Use to fetch a single bank transaction whose id you already have.
To search or page through transactions, use transactions_list.
id_by_customer is the per-customer counter shown in the BuchhaltungsButler UI, not a global database id.
Endpoint: POST /transactions/get/id_by_customer
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | An array of transaction data | |
| message | No | blank | |
| success | Yes | Success boolean |