Create a business account
curl --request POST \
--url https://thirdparty.qonto.com/v2/bank_accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Qonto-Idempotency-Key: <x-qonto-idempotency-key>' \
--data '{
"bank_account": {
"name": "Secondary business account"
}
}'
{
"bank_account": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Primary bank account",
"organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "active",
"main": true,
"iban": "FR7610004000000112345678901",
"bic": "BNPAFRPPXXX",
"currency": "EUR",
"balance": 142188.43,
"balance_cents": 14218843,
"authorized_balance": 141148.12,
"authorized_balance_cents": 14114812,
"updated_at": "2024-04-03T12:00:00Z",
"is_external_account": false,
"account_number": 1234567890
}
}