Jupiter ERP
Account API

List Bank Accounts

/api/account/bank-accounts

GETHTTP
get/api/account/bank-accounts

Beispielanfrage

GET https://api.jupiter-erp.com/api/account/bank-accounts

Code
curl -X GET 'https://api.jupiter-erp.com/api/account/bank-accounts' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
  -H 'Accept: application/json'

Parameter

NameInPflichtBeschreibung
searchqueryneinSearch in name, IBAN and BIC. Supports SQL-like syntax: - `test*`: begins with `test` - `*test`: ends with `test` - `*test*`: contains `test` - `test`: exact match.
is_activequerynein
order_byquerynein
#/components/parameters/OrderDirParameter
#/components/parameters/PerPageParameter
#/components/parameters/PageParameter

Antworten

200OK
FeldTypBeschreibung
data*object[]

array

Elemente

FeldTypBeschreibung
bicstringBank BIC/SWIFT code
booking_account_numberintegerLedger account number for DATEV export.
created_atstring (date-time)Creation timestamp in ISO 8601 format.
currency_codestring
ibanstringBank IBAN
id*integer
is_active*boolean
is_manual*booleanTrue = manual account (create transactions manually); false = externally synced (e.g. bank/CSV).
name*string
updated_atstring (date-time)Last update timestamp in ISO 8601 format.
meta*object
FeldTypBeschreibung
current_page*integerThe current page number.
items_from*integerThe starting item number on the current page.
items_to*integerThe ending item number on the current page.
last_page*integerThe last page number.
per_page*integerThe number of items per page.
total*integerThe total number of items.
Beispiel Response
{
  "data": [
    {
      "id": 0,
      "name": "string",
      "iban": "string",
      "bic": "string",
      "currency_code": "string",
      "is_active": true,
      "is_manual": true
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 1,
    "per_page": 15,
    "total": 1,
    "items_from": 1,
    "items_to": 1
  }
}
Bank Accounts

Fragen zur Integration?

GET /api/account/bank-accounts · Jupiter ERP