Jupiter ERP
Account API

List candidate transactions for internal account transfer linking

Returns open bank transactions on other accounts with opposite sign and matching absolute amount. Use before linking two transactions as an internal transfer (Umbuchung).

GETHTTP
get/api/account/bank-transactions/{id}/transfer-candidates

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

NameInPflichtBeschreibung
idpathjaBank transaction id
bank_account_idqueryneinOptional. Filter candidates by bank account (must belong to the current account and differ from the source transaction account).
searchqueryneinSearch in counterparty and reference. SQL-like: `test*` begins with, `*test` ends with, `*test*` contains, `test` exact.

Antworten

200OK
FeldTypBeschreibung
data*object[]

array

Elemente

Summary of the paired bank transaction in an internal account transfer (Umbuchung).

FeldTypBeschreibung
amount_cents*integerSigned; positive = credit, negative = debit
bank_account_id*integer
counterparty_namestring
currency_codestring
id*integer
referencestring
transaction_date*stringTimestamp in W3C format, will be saved in UTC time +00:00
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

Fragen zur Integration?

GET /api/account/bank-transactions/{id}/transfer-candidates · Jupiter ERP