Adding a Creditor Bank Account#
In this step of the GoCardless Embed guide you will create a creditor bank account for the creditor you created in the previous step.
The creditor bank account is where GoCardless will settle the funds we collect from the creditor's payers. This bank account must be controlled by you and notbe the merchant's bank account. GoCardless will only pay out once we have verified you control the bank account. You should add a creditor bank account for each currency you collect so GoCardless can pay out in that currency.
POST /creditor_bank_accounts#
You can create a creditor bank account by performing a POST request to the /creditor_bank_accounts endpoint.
The required parameters depend on the country. For a French bank account they are:
| Parameter | Description |
|---|---|
| country_code | The country that the bank account is registered in, as a ISO 3166-1 alpha-2 code. |
| currency | ISO 4217 currency code. Currently EUR, GBP, and USD are supported for the GoCardless Embed product. |
| account_holder_name | Name of the account holder, as known by the bank. This must be an account owned by you and notthe merchant. |
| iban | International Bank Account Number. Alternatively you can provide local details. |
| links[creditor] | The ID of the creditor whose payments should be paid out to this account. |
Examples of how to make this request using the GoCardless client libraries:
For more details, see the API reference docs for creating creditor bank accounts.
Verify your bank account#
Once you have added a creditor bank account, you will see that the bank account verification_status will be in pending state. You will receive an email with details about how to verify your bank account which requires you to make a verification payment to us. You must verify your bank account in order to start receiving payouts.
Once you have submitted the verification payment, you can check on the verification progress via the GET /creditor_bank_accounts/BA123 API.
The verification_status will move to in_review state while we verify your account. Once your bank account has been verified, the verification_status will be in successful state and you will be able to start receiving payouts to that bank account.