Example request
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'Parameters
| Name | In | Required | Description |
|---|---|---|---|
| id | path | yes | Bank transaction id |
| bank_account_id | query | no | Optional. Filter candidates by bank account (must belong to the current account and differ from the source transaction account). |
| search | query | no | Search in counterparty and reference. SQL-like: `test*` begins with, `*test` ends with, `*test*` contains, `test` exact. |
Responses
200OK
| Field | Type | Description | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| data* | object[] | array Elements Summary of the paired bank transaction in an internal account transfer (Umbuchung).
|
Example 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
No JSON schema documented.
Bank Transactions