| Field | Description | Validation |
|---|---|---|
| first_name | First name | Length >= 2 <= 50, RegEx ^\p{L}*(?:[ '-]\p{L}+)*$ |
| last_name | Last name | Length >= 2 <= 50, RegEx ^\p{L}*(?:[ '-]\p{L}+)*$ |
| document_number | CUIL (Código Único de Identificación Laboral) | RegEx ^(20|23|24|25|26|27|30|33|34)(-?\\d{8}-?\\d|\\d{9})$ Must be valid CUIL |
| account_number | CVU (Clave Virtual Uniforme) | Length >= 22 <= 22, RegEx ^\d+$ Must be valid CVU |
curl --location 'https://api.paypaga.com/v2/transactions/pay-out' \
--header 'Content-Type: application/json' \
--data-raw '{
"country": "AR",
"currency": "ARS",
"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": "Rafael",
"last_name": "Beaty",
"document_number": "20-08490848-8",
"account_number": 2.850590940090418e+21
}
}'{
"transaction_id": "20240806-2010-4086-8342-c28f4979f834",
"merchant_transaction_reference": "TRX-2026-0026",
"merchant_order_reference": "ORDER-2026-0001"
}