| Field | Description | Validation |
|---|---|---|
| first_name | First name | |
| last_name | Last name | |
| document_type | Identification document type | See document types listed below |
| document_number | Identification document number | See document types listed below |
| bank_name | Bank name | See supported bank names below |
| account_type | Account type | From options: Ahorro or Corriente |
| account_number | Account number | |
| Email address | Length >= 5 <= 50, RegEx ^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$ | |
| phone | Phone number | RegEx ^\d+$ |
| address | Full address |
| Name | Description | Validation |
|---|---|---|
| Cédula de Ciudadanía | CC | Length >= 6 <= 10, RegEx ^\d+$ |
| Cédula de Extranjería | CE | Length >= 6 <= 10, RegEx ^[a-zA-Z0-9]+$ |
| Pasaporte | PP | Length >= 7 <= 12, RegEx ^[a-zA-Z0-9]+$ |
| Tarjeta de Identificación | TI | Length >= 6 <= 15, RegEx ^[a-zA-Z0-9]+$ |
| Número de Identificación Tributaria | NI | Length >= 6 <= 15, RegEx ^[a-zA-Z0-9]+$ |
| Name | Type |
|---|---|
| AV VILLAS | Bank |
| BANCAMIA | Bank |
| BANCO AGRARIO | Bank |
| BANCO BTG PACTUAL | Bank |
| BANCO CAJA SOCIAL | Bank |
| BANCO DE BOGOTA | Bank |
| BANCO DE COMERCIO EXTERIOR | Bank |
| BANCO DE LA REPUBLICA | Bank |
| BANCO DE OCCIDENTE | Bank |
| BANCO FALABELLA | Bank |
| BANCO FINANDINA | Bank |
| BANCO MUNDO MUJER | Bank |
| BANCO PICHINCHA | Bank |
| BANCO POPULAR | Bank |
| BANCO SANTANDER DE NEGOCIOS | Bank |
| BANCO SERFINANZA | Bank |
| BANCO W | Bank |
| BANCOLDEX | Bank |
| BANCOLOMBIA | Bank |
| BANCOOMEVA | Financial |
| BBVA | Bank |
| BNP PARIBAS COLOMBIA | Bank |
| CITIBANK | Bank |
| COLSUBSIDIO | Financial |
| COLTEFINANCIERA | Financial |
| COMPENSAR | Financial |
| CONFIAR | Financial |
| COOFINEP | Financial |
| COOPERATIVA FINANCIERA DE ANTIOQUIA | Financial |
| COOTRAFA | Financial |
| COTRAFA COOPERATIVA FINANCIERA | Financial |
| CREDICORP CAPITAL COLOMBIA | Financial |
| DAVIPLATA | Wallet |
| DAVIVIENDA | Bank |
| FEDECAJAS | Financial |
| GIROS Y FINANZAS CFC | Financial |
| IRIS | Fintech |
| ITAU | Bank |
| JURISCOOP | Financial |
| LULO BANK | Bank |
| MIBANCO | Financial |
| MOVII | Wallet |
| NEQUI | Wallet |
| RAPPIPAY | Wallet |
| SCOTIABANK COLPATRIA | Bank |
| UALA | Wallet |
While ISO 4217 defines COP as having 2 decimal places in practice these are not used. Amounts in COP must be an integer amount with no decimal places.
curl --location 'https://api.paypaga.com/v2/transactions/pay-out' \
--header 'Content-Type: application/json' \
--data-raw '{
"country": "CO",
"currency": "COP",
"payment_method": "bank_transfer",
"merchant_transaction_reference": "TRX-2026-0026",
"merchant_order_reference": "ORDER-2026-0001",
"merchant_customer_id": "customer@mail.com",
"customer_ip": "120.29.48.92",
"amount": 125.5,
"fields": {
"first_name": "Juan",
"last_name": "Pérez",
"document_type": "CC",
"document_number": "12345678",
"bank_name": "BANCOLOMBIA",
"account_type": "Ahorro",
"account_number": "1234567890",
"email": "juan.perez@email.com",
"phone": "3001234567",
"address": "Calle 123"
}
}'{
"transaction_id": "20240806-2010-4086-8342-c28f4979f834",
"merchant_transaction_reference": "TRX-2026-0026",
"merchant_order_reference": "ORDER-2026-0001"
}