Update IBAN
Update an existing IBAN record for a company.
Endpoint
| Property | Value |
|---|---|
| URL | PUT /iban/update/{{companyId}}?iban={{iban}} |
| Method | PUT |
| Auth | R-Auth: <company-jwt> |
| Content-Type | application/json |
Example Request
curl --location '{{baseUrl}}/iban/update/{{companyId}}?iban={{iban}}' \
--header 'Content-Type: application/json' \
--header 'R-Auth: {{companyJwt}}' \
--request PUT \
--data-raw '{
"name": "Main Account",
"iban": "FR7630006000011234567890190",
"accountHolder": "AlpineSoft IT Solutions SAS",
"bic": "BNPAFRPPXXX",
"currency": "EUR",
"isDefault": true,
"bankName": "BNP Paribas",
"accountNumber": null
}'
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
companyId | UUID | Yes | Company UUID |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
iban | string | Yes | The existing IBAN to update |
Request body
Same shape as Add IBAN.
{
"name": "Main Account",
"iban": "FR7630006000011234567890190",
"accountHolder": "AlpineSoft IT Solutions SAS",
"bic": "BNPAFRPPXXX",
"currency": "EUR",
"isDefault": true,
"bankName": "BNP Paribas",
"accountNumber": null
}
Response
true