Jupiter ERP
Account API

Update Bank Account

/api/account/bank-accounts/{id}

PATCHHTTP
patch/api/account/bank-accounts/{id}

Beispielanfrage

PATCH https://api.jupiter-erp.com/api/account/bank-accounts/example-id

Code
curl -X PATCH 'https://api.jupiter-erp.com/api/account/bank-accounts/example-id' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "string",
  "iban": "string",
  "bic": "string",
  "currency_code": "string",
  "is_active": true,
  "is_manual": true
}'

Parameter

NameInPflichtBeschreibung
idpathja

Request Body

Optional

FeldTypBeschreibung
bicstring
booking_account_numberintegerLedger account number for DATEV export.
currency_codestring
ibanstring
is_activeboolean
is_manualbooleanTrue = manual account; false = externally synced.
namestring
Beispiel Request
{
  "name": "string",
  "iban": "string",
  "bic": "string",
  "currency_code": "string",
  "is_active": true,
  "is_manual": true
}

Antworten

200OK
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.
Beispiel Response
{
  "id": 0,
  "name": "string",
  "iban": "string",
  "bic": "string",
  "currency_code": "string",
  "is_active": true,
  "is_manual": true
}
Bank Accounts

Fragen zur Integration?

PATCH /api/account/bank-accounts/{id} · Jupiter ERP