PFC (AR)
💸 Cash Payments (Argentina – Pago Fácil)
ℹ️ For full request and response examples, refer to theAPI Reference.
Learn how to integrate cash-based payment methods through our API. These methods allow your customers to pay in physical locations like Pago Fácil, offering an inclusive option for customers without credit cards or digital wallets.
Availability Notice
PFC support may vary depending on your account configuration and country. Please contact our support or your account manager to confirm availability for your integration.
Note: Charges will remain inissued
status until the customer completes the payment at a participating location. Once paid, the status will update automatically via webhook.
🏪 Pago Fácil
Pago Fácil is a widely used payment network in Argentina. It allows your customers to complete purchases in cash by visiting any physical Pago Fácil location.
Flow Overview:
- You create a charge using our API with the payment method set to
pfc
. - We return a payment voucher code and expiration date.
- Your customer goes to any Pago Fácil location and pays in cash.
- Once the payment is completed, we notify your system via webhook.
📘 Key Concepts
Concept | Description |
---|---|
🧾 Payment Voucher | A unique code or barcode the customer uses to pay at a Pago Fácil branch. |
⏳ issed Status | Charge stays issued until payment is made. |
📅 Expiration Date | The payment voucher has a defined expiration window (usually 48–72 hours). |
🔔 Webhooks | You receive real-time updates when the payment is completed or expires. |
📥 Sample Payload – Create 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": "ARS",
"due_date": "2025-12-31T23:59:59Z",
"description": "Argentina – Pago Fácil",
"type_charge": "pfc",
"webhook_url": "https://webhook-test.com/pix-status",
"redirect_url": "https://mysite.com/"
}
{
"charge_uuid": "22222222-2222-2222-2222-222222222222",
"local_currency": 2000,
"currency": "ARS",
"type": "pfc",
"date": "2025-07-24",
"description": "Argentina – Pago Fácil",
"due_date": "2025-12-31",
"status": "issued",
"installments": [
{
"local_currency": 2000,
"currency": "ARS",
"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