PSE PayOut

PayIn
Payment registration transactions

PSE HPP & H2H


1. PSE PayOut

Description:
PSE (Pagos Seguros en Línea) is a widely used bank transfer payment solution in Colombia, enabling customers to make real-time payments directly from their bank accounts. By connecting users with more than 20 local banks, PSE provides a secure, convenient checkout experience.
 
Allows the creation of pay-outs (outgoing payments).
 
URL:https://api.payelu.xyz/api/v1/payments/payout_hth
 

Country Uses:

  • Colombia: PSE
 

Request Parameters:

Parameter
Type
Description
Requeriment
service_code
string
PSE_CO
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
account
string
Customer’s Bank account number
required
account_bank
string
Code of specific bank of client. It’s provided
required
account_type
string
“corriente” or “ahorros” type of account
required
account_doc_id
string
Customer ID or TAX ID number
required
account_doc_type
string
Type of tax document or identity document. Supported identity/tax documents: СE - Cédula de Extranjería or СC Cédula de Ciudadanía
required
payer_name
string
Payer’s name and last name
required

PSE Example Request:

{ "service_code": "PSE_CO", "amount": 200, "reference": "0000000000002507135224", "account": "123432452332", "account_bank": "1013", "accountType": "corriente", "account_doc_id": "1234567989", "account_doc_type": "CE", "payer_name": "Pedro Perez", }

PSE Example Response:

{ "status": "success", "data": { "transaction_id": "686c11c05dedf17264945b67", "amount": 200, "reference": "{{payout_ref}}", "created_at": "2025-07-07T18:28:16+00:00", "status": "PENDING", "errorMsg": "" }