Skip to main content

Online-banking in Uzbekistan (Humo)

Online banking in Uzbekistan is processed through direct payment requests.

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (purchase)
amountNumberTransaction amount. Must be a positive number. Minimum amount is 5000 UZS
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringcc
customer_fnameStringCustomer's first name
customer_lnameStringCustomer's last name
customer_emailStringCustomer's email
customer_idStringCustomer's identifier in merchant's system
cc_numberCC_NUMBERCard number
exp_monthNumberCard expiration month field
exp_yearNumberCard expiration year field
card_cvvStringCard CVV
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer 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"
}