Online-banking in Uzbekistan (Humo)
Online banking in Uzbekistan is processed through direct payment requests.
| Parameter | Type | Required | Description |
|---|---|---|---|
pos_id | UUID | ✅ | Merchant's identifier (POS_ID) |
mode | MODE | ✅ | direct |
method | METHOD | ✅ | Payment method (purchase) |
amount | Number | ✅ | Transaction amount. Must be a positive number. Minimum amount is 5000 UZS |
currency | CURRENCY | ✅ | Transaction currency (ISO_4217) |
order_3ds_bypass | String | ✅ | 3-D Secure flow option |
order_id | String | ✅ | Unique identifier of order |
description | String | ✅ | Payment description |
payway | String | ✅ | cc |
customer_fname | String | ✅ | Customer's first name |
customer_lname | String | ✅ | Customer's last name |
customer_email | String | ✅ | Customer's email |
customer_id | String | ✅ | Customer's identifier in merchant's system |
cc_number | CC_NUMBER | ✅ | Card number |
exp_month | Number | ✅ | Card expiration month field |
exp_year | Number | ✅ | Card expiration year field |
card_cvv | String | ✅ | Card CVV |
server_url | URL | Webhook notification will be sent to this URL | |
result_url | URL | Customer will be redirected to this URL after payment |
Request example:
{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"amount": 5425,
"method": "purchase",
"currency": "UZS",
"cc_number": "4000000000000000",
"exp_month": 5,
"exp_year": 30,
"card_cvv": "123",
"order_id": "0123456789",
"description": "Order: order1",
"payway": "cc",
"customer_lname": "Dou",
"customer_fname": "Jhon",
"customer_email": "dasdsdasd@gmail.com",
"customer_id": "account-1234567890",
"order_3ds_bypass": "always",
"result_url": "https://example.com/result",
"server_url": "http://callback-stub:9000/consume"
}