Payout to Chile (Bank Transfer)
To send a payout to Chile, set the payout_method
to BANK_TRANSFER
. The required_CL
object must include the recipient's bank_code
, account_type
, account_number
, tax_id
, tax_id_type
, and full_name
.
POST https://api-sandbox.letpay.io/payoutTransaction
Body
tax_id_type
string, required
This field specifies the type of identification document.
Allowed values:
RUT
: Tax ID Number in Chile.
tax_id
string, required
This field contains the identification document number.
- For
RUT
in Chile: If the check digit is the letterK
, send it in upper case.
bank_code
string, required
This field contains the bank code.
account_type
string, required
This field defines the bank account type.
Allowed values:
CC
: Current Account in Chile.CA
: Savings Account in Chile.CV
: "Cuenta Vista" or RUT account in Chile.
account_number
string, required
This field contains the bank account number.
- For
account_type
=CV
:- For Banco Estado, send the RUT number without the check digit.
- For banks other than Banco Estado, send the bank account number (different from the RUT).
Example Request
{
"payoutTransactions": [
{
"original_amount": 200.00,
"original_currency": "CLP",
"payment_currency": "CLP",
"payment_country": "CL",
"payout_method": "BANK_TRANSFER",
"contract_id": "MY_PAYOUT_CONTRACT_ID",
"reference_id": "MY_REFERENCE_ID",
"notification_url": "https://my.notification.url/callback",
"ttl": 0,
"required_CL": {
"bank_code": "001",
"account_type": "CA",
"account_number": "123456",
"tax_id": "41786329",
"tax_id_type": "RUT",
"full_name": "Alice Sonnentag"
}
}
]
}
Example Response
{
"payoutTransactionResponses": [
{
"tx_id": "PAYOUT_REFERENCE_ID",
"reference_id": "MY_REFERENCE_ID",
"amount": 200,
"original_amount": 200,
"original_asset": "CLP",
"customer_fees": 0,
"customer_amount": 200,
"merchant_fees": 0,
"merchant_amount": 200,
"asset": "CLP",
"banking_data": "001:CA:123456",
"status": "CREATED"
}
],
"refresh_token": "MY_ACCESS_TOKEN"
}