🇨🇱 Chile
Learn everything you need to know about making payouts in Chile.
Payment Methods
- Bank Transfer
Available Operations
- Local LATAM
- Cross Border
Payee Types
- B2B
- B2C
Payment Methods​
Checkout our SLAs for each payment method:
| Payment Method | SLA | B2B | B2C |
|---|---|---|---|
| Up to 3 days | check_circle_outline | check_circle_outline |
Instructions​
To create a payout using EBANX Direct API, follow the steps below.
- Define request parameters​
Provide the required parameters listed below to create a payout.
Field Description integration_keyYour EBANX integration key. external_referenceThe unique payout ID provided by you. countryThe two-letter country code for the customer country. In this case, we'll show the method to cl (Chile) amountThe amount in the specified currency (currency_code). currency_codeThree-letter code of the payout currency. In this case, we'll use CLP (Chilean Peso) payeeA JSON object containing the details of the payee of your request. Document Types Allowed
These document types are used to identify payees or shareholders.
Document type Description RUN B2C - Rol Único Nacional (National Unique Role). RUT B2B - Rol Único Tributario (Unique Tax Role). RUN vs RUTIn Chile, RUN (Rol Único Nacional) is used for individuals and RUT (Rol Único Tributario) is used for companies. Both follow the same format: 8-9 digits followed by a verification digit (e.g.,
12345678-9or12345678-K). - Send payout request to EBANX​
To create a new Payout, you will use the /ws/payout/create endpoint.
Choose the transaction type for your payout request:
B2C (Individual)
B2B (Organization)
The following example demonstrates a payout request to an individual payee using their RUN:
curl -X POST 'https://sandbox.ebanx.com/ws/payout/create' \
--header 'Content-Type: application/json' \
--data '{
"integration_key": "your_test_integration_key",
"external_reference": "PAYOUT_EBANX_CL_01",
"country": "cl",
"amount": 50000,
"currency_code": "CLP",
"payee": {
"name": "Carlos Gonzalez Silva",
"email": "carlos.gonzalez@email.com",
"phone": "+56912345678",
"document": "123456789",
"document_type": "RUN",
"bank_info": {
"bank_name": "001 Banco de Chile",
"bank_branch": "0001",
"bank_account": "12345678901",
"account_type": "S"
},
"address": {
"zipcode": "7500000",
"state": "RM",
"city": "Santiago",
"street_address": "Av. Providencia 1234",
"street_complement": "Depto 501"
}
}
}'A successful creation will return a JSON Object with type "success" and a payout object with all the details of the newly created payout.
{
"type": "success",
"payout": {
"uid": "f6807f5341c3c8c1e40ea9c06715f05778ff35ee",
"external_reference": "PAYOUT_EBANX_CL_01",
"status": "OP",
"request_date": "2024-01-15 10:30:00",
"status_date": null,
"paid_date": null,
"cancel_date": null,
"payee": {
"name": "Carlos Gonzalez Silva",
"email": "carlos.gonzalez@email.com",
"phone": "56912345678",
"document": "123456789",
"document_type": "RUN",
"birthdate": null,
"bank_info": {
"bank_name": "001 Banco de Chile",
"bank_branch": "0001",
"bank_account": "12345678901",
"account_type": "S",
"bank_details": null
}
},
"request_amount": "50000.00",
"request_currency": "CLP",
"request_exchange_rate": "1.0000",
"debit_amount": "50000.00",
"debit_fee": "500.00",
"debit_amount_total": "50500.00",
"debit_currency": "CLP",
"local_tax_amount": "0.00",
"local_amount_total": "50000.00",
"local_currency": "CLP",
"local_exchange_rate": "1.0000"
}
}To create a payout for an organization entity (company), you need to use the RUT document type and include shareholder information.
The following fields are required in the shareholder object:
namedocumentdocument_type
curl -X POST 'https://sandbox.ebanx.com/ws/payout/create' \
--header 'Content-Type: application/json' \
--data '{
"integration_key": "your_test_integration_key",
"external_reference": "PAYOUT_EBANX_CL_B2B",
"country": "cl",
"amount": 500000,
"currency_code": "CLP",
"payee": {
"name": "Empresa Chilena SpA",
"email": "contacto@empresachilena.cl",
"phone": "+56223456789",
"document": "765432109",
"document_type": "RUT",
"bank_info": {
"bank_name": "001 Banco de Chile",
"bank_branch": "0001",
"bank_account": "98765432101",
"account_type": "C"
},
"address": {
"zipcode": "7500000",
"state": "RM",
"city": "Santiago",
"street_address": "Av. Apoquindo 4500",
"street_complement": "Oficina 1201"
},
"shareholders": [
{
"name": "Carlos Gonzalez Silva",
"document": "123456789",
"document_type": "RUN",
"email": "carlos.gonzalez@mail.com",
"zipcode": "7500000",
"state": "RM",
"city": "Santiago",
"address": "Av. Providencia 1234",
"complement": "Depto 501",
"ownership_percent": 60
},
{
"name": "Maria Rodriguez Perez",
"document": "987654321",
"document_type": "RUN",
"email": "maria.rodriguez@mail.com",
"zipcode": "7500000",
"state": "RM",
"city": "Santiago",
"address": "Av. Las Condes 5678",
"complement": "Casa 12",
"ownership_percent": 40
}
]
}
}' - Send commit request to EBANX​
Once the new payout record is created it'll be committed automatically after 6 hours. Or you can use the /ws/payout/commit endpoint to start the payment process.
Here's an example of a commit operation using the payout we've just created:
curl -X POST 'https://sandbox.ebanx.com/ws/payout/commit' \
--header 'Content-Type: application/json' \
--data '{
"integration_key": "your_test_integration_key",
"uid": "f6807f5341c3c8c1e40ea9c06715f05778ff35ee"
}'Once the new payout is commited, a JSON Object with type "success" will be returned.
{
"type": "success",
"message": "Payout has already been committed"
} - Congratulations!​
You have successfully Created a Payout in Chile.
Creating a Payout using the Dashboard​
You can also create a payout through our Dashboard in the Overview section of the Payout tab. Click on Create Payout, fill in the payee information, payout amount and click on Create. Additionally, you can create a Mass Payout by sending a spreadsheet to be processed in bulks.
Available Banks​
| Bank Code | Institution Name |
|---|---|
| 001 | Banco de Chile |
| 009 | Banco Internacional |
| 012 | Banco del Estado de Chile |
| 014 | Scotiabank Chile |
| 016 | Banco de Crédito e Inversiones (BCI) |
| 027 | Corpbanca |
| 028 | Banco Bice |
| 031 | HSBC Bank Chile |
| 037 | Banco Santander Chile |
| 039 | Itaú Corpbanca |
| 049 | Banco Security |
| 051 | Banco Falabella |
| 053 | Banco Ripley |
| 054 | Banco Consorcio |
| 055 | Banco Penta (actual Banco BTG Pactual Chile) |
| 504 | Banco BBVA Chile |
| 672 | Coopeuch |
Possible Errors​
Click here and check out our Payout Error Code page to learn more about the possible errors.
Still need help?
We hope this article was helpful. If you still have questions, you can explore the following options:
- Merchant support: Contact our support team at sales.engineering@ebanx.com for assistance.
- Not a partner yet? Please complete the Merchant Signup Form, and our commercial team will reach out to you.