Beispielanfrage
POST https://api.jupiter-erp.com/api/account/bank-accounts
Code
curl -X POST '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' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"iban": "string",
"bic": "string",
"currency_code": "string",
"is_active": true,
"is_manual": true
}'Request Body
Optional
ModellCreateBankAccountRequest
| Feld | Typ | Beschreibung |
|---|---|---|
| bic | string | — |
| booking_account_number | integer | Ledger account number for DATEV export. |
| currency_code | string | — |
| iban | string | — |
| is_active | boolean | — |
| is_manual | boolean | True = manual account (create transactions manually); false = externally synced. |
| name* | string | — |
Beispiel Request
{
"name": "string",
"iban": "string",
"bic": "string",
"currency_code": "string",
"is_active": true,
"is_manual": true
}Antworten
201Created
ModellBankAccount
| Feld | Typ | Beschreibung |
|---|---|---|
| bic | string | Bank BIC/SWIFT code |
| booking_account_number | integer | Ledger account number for DATEV export. |
| created_at | string (date-time) | Creation timestamp in ISO 8601 format. |
| currency_code | string | — |
| iban | string | Bank IBAN |
| id* | integer | — |
| is_active* | boolean | — |
| is_manual* | boolean | True = manual account (create transactions manually); false = externally synced (e.g. bank/CSV). |
| name* | string | — |
| updated_at | string (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