Request
Body Params multipart/form-data
Merchant ID in {{project}}.
Order ID in the merchant system. A unique
Transfer amount. Minimum 0.01.
Example:Payment Description
URL to which the user is redirected in case of successful payment.
Example:http://site.kz/back
URL to which payment status response is sent.
pg_order_time_limit
string
requiredTime limit for making a payment.
Example:2020-12-31 12:00:00
A random string consisting of arbitrary numbers and Latin letters.
Example:some random string
User ID in the merchant system.
To initialize a frame. In order to use the frame for payments
Email of the user in the merchant system.
Request samples
curl --location --request POST 'https://api.freedompay.uz/api/reg2nonreg' \
--form 'pg_merchant_id=""' \
--form 'pg_order_id="order_1234"' \
--form 'pg_amount="10"' \
--form 'pg_description="Payment Description"' \
--form 'pg_back_link="http://site.kz/back"' \
--form 'pg_post_link=""' \
--form 'pg_order_time_limit="2020-12-31 12:00:00"' \
--form 'pg_salt="some random string"' \
--form 'pg_sig=""' \
--form 'pg_user_id="1"' \
--form 'pg_payment_route="frame"' \
--form 'pg_user_email="mail@customer.kz"'
Responses
application/xml Shows the result of the query.ok
: Request was successful.
error
: Request was successful.
The unique identifier of the payment transaction in {{project}}. Serves as a key for all further work with the transaction.
Merchant ID in the system {{project}}.
URL for which a redirect is required.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pg_status>string</pg_status>
<pg_payment_id>0</pg_payment_id>
<pg_merchant_id>0</pg_merchant_id>
<pg_redirect_url>string</pg_redirect_url>
<pg_salt>string</pg_salt>
<pg_sig>string</pg_sig>
</root>
Modified at 2025-02-03 10:55:01