Beispielanfrage
GET https://api.jupiter-erp.com/api/account/bank-transactions/example-id/transfer-candidates
Code
curl -X GET 'https://api.jupiter-erp.com/api/account/bank-transactions/example-id/transfer-candidates' \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
-H 'Accept: application/json'Parameter
| Name | In | Pflicht | Beschreibung |
|---|---|---|---|
| id | path | ja | Bank transaction id |
| bank_account_id | query | nein | Optional. Filter candidates by bank account (must belong to the current account and differ from the source transaction account). |
| search | query | nein | Search in counterparty and reference. SQL-like: `test*` begins with, `*test` ends with, `*test*` contains, `test` exact. |
Antworten
200OK
| Feld | Typ | Beschreibung | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| data* | object[] | array Elemente Summary of the paired bank transaction in an internal account transfer (Umbuchung).
|
Beispiel Response
{
"data": [
{
"id": 0,
"bank_account_id": 0,
"transaction_date": "2025-01-14T13:51:15.000Z",
"amount_cents": 0,
"currency_code": "string",
"counterparty_name": "string"
}
]
}404Bank transaction not found
Kein JSON-Schema dokumentiert.
Bank Transactions