List view
Getting Started
Getting Started
Authentication Guide
Authentication Guide
PIX Brazil
PIX Brazil
PagoMovil Venezuela
PagoMovil Venezuela
SPEI Mexico
SPEI Mexico
PSE Colombia
PSE Colombia
Real-Time Bank Transfers Paraguay
Real-Time Bank Transfers Paraguay
VISA & MasterCard
VISA & MasterCard
Payment registration transactions
Real-Time Paraguay Bank Transfers HPP & H2H
1. Paraguay Bank Transfers PayIn
Description:
Bank Transfer Paraguay enables payments to be made via online banking.
Allows the creation of pay-ins (incoming payments).
URL:
https://api.payelu.xyz/api/v1/payments/payin_hth
Country Uses:
- Paraguay: Real-Time Bank Transfers
Parameter | Type | Description | Requeriment |
service_code | string | ’ BT_PY ’ | required |
amount | num | Amount to process. e.g. 123.45 | required |
reference | string | Merchant’s Unique ID for transaction. It must be 22 alfanumeric digits (i.e. ‘ 0000000000002507135224 ‘) | required |
payer_name | string | Payer’s name and last name | required |
expired_at | string | Payment expiration datetime in UTC (ISO 8601 format). It must have 120 hours | required |
Request Parameters:
Paraguay Bank Transfers Example Request:
{ "service_code": "BT_PY", "amount": 1000, "expired_at": "2025-05-18T16:20:59Z", "reference": "0000000000002507135224", "payer_name" : "Pepe Botella" }
Paraguay Bank Transfers Example Response:
{ "status": "success", "data": { "transaction_id": "1a388390-ef72-4091-90cf-560820327718", "amount": 1000.0, "currency": "PYG", "status": "PENDING", "reference": "0000000000002507135224", "created_at": "2025-06-02T19:52:17.275649Z", "updated_at": "2025-06-02T19:52:17.275653Z", "expired_at": "2025-06-03T07:52:17.106881Z", "target_account_bank": "UENO", "target_account_num": "123456789", "target_account_type": null, "target_account_beneficiary": "payelu s.a.", "target_account_doc_id": "123456789", "target_account_doc_type": null, "target_account_reference": null "redirect_hpp_url": "XXXXXXX" }
After receiving
redirect_hpp_url
, you need to redirect the client to the URL and wait for the final status of the transaction.