Add IBAN
Add a new IBAN record to a company.
Endpoint
| Property | Value |
|---|---|
| URL | POST /iban/save?companyId={{companyId}} |
| Method | POST |
| Auth | R-Auth: <company-jwt> |
| Content-Type | application/json |
Example Request
curl --location '{{baseUrl}}/iban/save?companyId={{companyId}}' \
--header 'Content-Type: application/json' \
--header 'R-Auth: {{companyJwt}}' \
--data-raw '{
"name": "Main Account",
"iban": "FR7630006000011234567890190",
"accountHolder": "AlpineSoft IT Solutions SAS",
"bic": "BNPAFRPPXXX",
"currency": "EUR",
"isDefault": true,
"bankName": "BNP Paribas",
"accountNumber": null
}'
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
companyId | UUID | Yes | Company UUID |
Request body
{
"name": "Main Account",
"iban": "FR7630006000011234567890190",
"accountHolder": "AlpineSoft IT Solutions SAS",
"bic": "BNPAFRPPXXX",
"currency": "EUR",
"isDefault": true,
"bankName": "BNP Paribas",
"accountNumber": null
}
Request fields
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Account label |
iban | string | Yes | IBAN number |
accountHolder | string | Yes | Account holder name |
bic | string | No | BIC / SWIFT code |
currency | string | Yes | Currency code |
isDefault | boolean | No | Set as default IBAN |
bankName | string | No | Bank name |
accountNumber | string | No | Optional account number |
Response
true