E-Wallet
👛 E‑Wallet Link Payment
Offer your customers the convenience of paying through a secure link using their preferred digital wallets. This method is ideal for payments in countries like Chile, where e-wallets are widely used.
Availability Notice
E-wallet support may vary depending on your account configuration and country. Please contact our support or your account manager to confirm availability for your integration.
The customer receives a payment link, opens it in their browser, and completes the transaction using an e-wallet app. Once the payment is confirmed, a webhook is triggered and the status is updated topaid
.
🌐 Flow Overview
- You create a charge with type
"e_wallet"
. - A unique payment link is generated.
- You send the link to your customer (via email, WhatsApp, SMS, etc.).
- The customer completes the payment using their e-wallet.
- Your system receives real-time webhook updates.
📥 Sample Payload – Create E‑Wallet Charge
{
"wallet_uuid": "00000000-0000-0000-0000-000000000000",
"merchant_id": "11111111-1111-1111-1111-111111111111",
"payer_name": "João Silva",
"payer_email": "[email protected]",
"payer_cell_phone": "+5511988887777",
"installment_value": 2000,
"items": [
{
"name": "Tênis Esportivo",
"description": "Tênis para corrida",
"quantity": 1,
"total_amount": 2000,
"unit_amount": 2000,
"sku": "TNS-SPORT-2025",
"code": "TS2025"
}
],
"payer_address": {
"street": "Av. Paulista",
"address_number": "1000",
"complement": "Apto 42",
"neighborhood": "Bela Vista",
"city": "São Paulo",
"state": "SP",
"postal_code": "01310-100",
"country": "BR"
},
"currency": "CLP",
"due_date": "2025-12-31T23:59:59Z",
"description": "sample e_wallet",
"type_charge": "e_wallet",
"webhook_url": "https://webhook-test.com/pix-status",
"redirect_url": "https://mysite.com/"
}
{
"charge_uuid": "22222222-2222-2222-2222-222222222222",
"local_currency": 2000,
"currency": "CLP",
"type": "e_wallet",
"date": "2025-07-24",
"description": "sample e_wallet",
"due_date": "2025-12-31",
"status": "issued",
"installments": [
{
"local_currency": 2000,
"currency": "CLP",
"due_date": "2025-12-31",
"status": "issued",
"installment_number": 1
}
],
"charge_payment_url": "https://pay.example.com/charge/22222222-2222-2222-2222-222222222222" // link
}
Updated 7 days ago