Beispielanfrage
GET https://api.jupiter-erp.com/api/account/bank-transactions
Code
curl -X GET 'https://api.jupiter-erp.com/api/account/bank-transactions' \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
-H 'Accept: application/json'Parameter
| Name | In | Pflicht | Beschreibung |
|---|---|---|---|
| bank_account_id | query | nein | Optional. Filter by bank account; omit to list all transactions. |
| search | query | nein | Search in counterparty (Empfänger) and reference (Verwendungszweck). SQL-like: `test*` begins with, `*test` ends with, `*test*` contains, `test` exact. |
| transaction_date_from | query | nein | Filter transactions from this date (inclusive). Format Y-m-d. |
| transaction_date_to | query | nein | Filter transactions until this date (inclusive). Format Y-m-d. |
| amount_cents_min | query | nein | Minimum amount (signed, in cents). Use negative for debits. |
| amount_cents_max | query | nein | Maximum amount (signed, in cents). Use negative for debits. |
| amount_assignable_cents_min | query | nein | Minimum open (assignable) amount in cents (magnitude, non-negative). |
| amount_assignable_cents_max | query | nein | Maximum open (assignable) amount in cents (magnitude, non-negative). |
| currency_code | query | nein | Filter by transaction currency (ISO 4217, e.g. EUR, USD). |
| source | query | nein | Filter by source (manual, csv, api) |
| assignment_status | query | nein | Filter by assignment status (open, partially_assigned, fully_assigned, private, transfer) |
| auto_detected | query | nein | Filter by auto-detected flag (true/false) |
| #/components/parameters/RecordLockedQueryParameter | |||
| order_by | query | nein | — |
| #/components/parameters/OrderDirParameter | |||
| #/components/parameters/PerPageParameter | |||
| #/components/parameters/PageParameter | |||
Antworten
200OK
| Feld | Typ | Beschreibung | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| data* | object[] | array Elemente
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| meta* | object |
|
Beispiel Response
{
"data": [
{
"id": 0,
"bank_account_id": 0,
"transaction_date": "2025-01-14T13:51:15.000Z",
"value_date": "2025-01-14T00:00:00.000Z",
"amount_cents": 0,
"currency_code": "string",
"source": "string",
"assignment_status": "open",
"amount_assignable_cents": 0,
"is_private": true,
"is_no_assignment_required": true,
"auto_detected": true
}
],
"meta": {
"current_page": 1,
"last_page": 1,
"per_page": 15,
"total": 1,
"items_from": 1,
"items_to": 1
}
}Bank Transactions