Request
Body Params multipart/form-data
Merchant ID in FreedomPay
Example:{{paybox_merchant_id}}
Order ID in the merchant system. A unique, monotonically increasing value is recommended
Transfer amount. Minimum 0.01.||number
Recipient's card number.||integer
URL to which payment status response is sent
Example:http://site.kz/post
A random string consisting of arbitrary numbers and Latin letters
Example:some random string
Example:{{paybox_signature}}
User ID in the merchant system
Name and surname of card holder
Request samples
curl --location --request POST 'https://api.freedompay.kg/g2g/p2p2nonreg' \
--form 'pg_merchant_id="{{paybox_merchant_id}}"' \
--form 'pg_order_id="1234"' \
--form 'pg_amount="100"' \
--form 'pg_payment_to="4405645000006150"' \
--form 'pg_description="Описание платежа"' \
--form 'pg_post_link="http://site.kz/post"' \
--form 'pg_salt="some random string"' \
--form 'pg_sig="{{paybox_signature}}"' \
--form 'pg_user_id="1234"' \
--form 'pg_card_name="Ivan Ivanov"' \
--form 'pg_currency="KZT"'
Responses
application/xml <?xml version="1.0" encoding="utf-8"?>
<response>
<pg_payment_id>7777777777</pg_payment_id>
<pg_merchant_id>9970</pg_merchant_id>
<pg_order_id>ORD12345</pg_order_id>
<pg_status>ok</pg_status>
<pg_balance>500000</pg_balance>
<pg_payment_amount>1000</pg_payment_amount>
<pg_payment_date>2024-09-02T12:19:01+00:00</pg_payment_date>
<pg_reference>FSDUNJFA244324</pg_reference>
<pg_salt>YtfwCGiBHsFLpYGk</pg_salt>
<pg_sig>ccee466c01c2332d8a065d6108fd686b</pg_sig>
<pg_datetime>2024-09-02T12:19:01+00:00</pg_datetime>
</response>
Modified at 2025-02-03 10:08:06