πŸ’°Payment

Page description

To initiate a payment, please send a POST request to the following endpoint: https://{url}.finipay.kg/api/v1.1.0/mbank/pay.

POST https://{url}.finipay.kg/api/v1.1.0/mbank/pay

Take into consideration

Minimal amount for paymemts via Cards/Mbank - 1 KGS

Minimal amount for Megapay - 5 KGS

Request Body

Name
Type
Description

orderNumber*

String

Unique payment ID

phone*

String

Payment details. For test environment: 996772140014

amount*

Integer

The amount of the request for funds

comment*

String

Payment description

callbackUrl

String

URL for callbacks is not required

{
    "orderNumber": "order_1747200104390",
    "phone": "996772140014",
    "amount": 1,
    "comment": "test",
    "callbackUrl":"test"
}

Confirm

after initializing the payment, you need to do confirm. As a result of the response to create, when the payment is successfully created, you get a quid that you need to drive into confirm

To do confirm, please send a POST request to the following endpoint: https://{url}.finipay.kg/api/v1.1.0/mbank/confirm.

POST https://{url}.finipay.kg/api/v1.1.0/mbank/confirm

Request Body

Name
Type
Description

orderNumber*

String

Unique payment ID

otp*

String

a one-time password that you will receive to the specified phone number when initializing the payment. Test otp (0000)

Last updated