Initiate your first single transfer
With the Bridge Pay, you can configure the single transfer's values with endpoint parameters:
- the amount
- the beneficiary (name and iban) (mandatory)
- the label
- the sender account
How to set up the
sender_account_id
?First refresh the sender and receiver accounts with the endpoint Refresh accounts.
Then List all sender accounts and select the good one for your client.
curl "https://sync.bankin.com/v2/pay/transfer/url" \
-X POST \
-H 'Bankin-Version: 2019-02-18' \
-H 'Client-Id: MY_CLIENT_ID' \
-H 'Client-Secret: MY_CLIENT_SECRET' \
-H 'Authorization: Bearer TOP_SECRET_ACCESS_TOKEN'
-d '{
"beneficiary_name": "Test Name",
"iban": "FR3130003000709222579823U36",
"amount": 1500.59,
"editable_amount": false,
"label": "Label example",
"sender_account_id": 123456789,
"sender_account_editable": false,
"client_reference": "reference-test-1234"
}
{
"redirect_url": "https://pay.bridgeapi.io/?token_uuid=SECURE_ACCESS_TOKEN"
}
Items, accounts and statuses verifications
We process verifications on the user's items and accounts to check that we will be able to initiate a transfer. Here is the list of the cases and messages you will get when the user's items or accounts don't allow us to initiate transfers:
Code | Message |
---|---|
The sender account provided does not exist | Please provide a correct sender_account_id |
The item's status linked to the sender account you provided does not allow us to initiate transfers (item's status must be 0 or 1009) | Your account status does not allow to initiate a transfer. Please synchronize your account again before trying to initiate transfers |
None of the user items' statuses allow us to initiate transfers (the user must have at least one item with status 0 or 1009) | Your accounts statuses do not allow to initiate a transfer. Please synchronize one of your accounts again before trying to initiate transfers |
The user does'nt have any items | You haven't synchronized any item yet. Please synchronize an item before trying to proceed to batch transfers |
The user doesn't have any account compatible with transfers | You do not have any account compatible to initiate transfer |
My users cannot see their Qonto sender accounts, why?
To initiate transfers from a Qonto account, users need to enable the "2-step verification" in their Qonto account settings. Otherwise the users won't be able to make transfers from Qonto interface nor from Bridge.
If the Qonto item has been synchronized with success and you cannot see any sender accounts when you list them, it means the users need to enable the "2-step verification" in their Qonto interface.
Updated over 3 years ago