Overview
The PayOut API for Honduras enables disbursements to local bank accounts viaBANK_TRANSFER. Transactions are processed asynchronously with webhook notifications for status updates.
Quick Reference
| Parameter | Value | Description |
|---|---|---|
| Endpoint | POST /api/v1/payout | Initiate PayOut transaction |
| Currency | HNL | Honduran Lempira |
| Country Code | HN | Honduras |
| Auth Required | Yes | Token-Top + Basic Auth |
| Processing | Async | Status updates via webhook |
Request Parameters
Required Fields
| Field | Type | Description | Example |
|---|---|---|---|
payment_method | string | Disbursement method | "BANK_TRANSFER" |
reference | string | Unique transaction identifier from your system | "hn-payout-001" |
amount | float | Amount in HNL (min 50, max 500,000) | 500.00 |
currency | string | "HNL" | "HNL" |
country | string | "HN" | "HN" |
ipn_url | string | Webhook URL | "https://your-domain.com/webhook" |
customer_data | object | Recipient and account data (see below) | — |
Customer Data Object
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
legal_doc | string | ✅ | Document number | "1234567890123" |
legal_doc_type | string | ✅ | DNI or TI | "DNI" |
phone_code | string | ✅ | "504" | "504" |
phone_number | string | ✅ | 8-digit number | "91234567" |
email | string | ✅ | Recipient email | "customer@example.com" |
full_name | string | ✅ | Full name | "John Doe" |
bank | string | ✅ | Bank code | Pending catalog |
account_number | string | ✅ | Bank account number | "1234567890" |
account_type | string | ✅ | AHORRO or CORRIENTE | "AHORRO" |
Supported banks: the bank code list for Honduras is pending publication. Contact soporte@tumipay.co for the current catalog before production.
Response Structure
| Field | Description |
|---|---|
data.date | Transaction creation time in UTC (Y-m-d H:i:s) |
Transaction Status Flow
| Status | Description |
|---|---|
PENDING | Transaction created, processing initiated |
APPROVED | Funds successfully transferred |
REJECTED | Transaction rejected or validation failure |
Example Request
Related
- Honduras introduction — PayIn methods, document types, limits
- PayOut API reference