Request for payment generation
Request
Body Params multipart/form-data
Merchant ID in {{project}}.
User's phone number to receive the code value without country code.
Payout amount. Must be a multiple of 2000 KZT if the amount is less than or equal to 4000 KZT
Order ID in the merchant system.
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
Request samples
curl --location --request POST 'https://api.freedompay.kg/api/cbc/check' \
--form 'pg_merchant_id=""' \
--form 'pg_phone="7073175200"' \
--form 'pg_amount="2000"' \
--form 'pg_order_id="00102"' \
--form 'pg_post_link="http://site.kz/post"' \
--form 'pg_salt="some random string"' \
--form 'pg_sig=""'
Responses
application/xml 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}}.
Order ID in the merchant system.
Shows error code in case of error.
pg_error_description
string
optionalShows error description in case of error.
Random string consisting of arbitrary numbers and Latin letters.
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pg_payment_id>0</pg_payment_id>
<pg_merchant_id>0</pg_merchant_id>
<pg_order_id>string</pg_order_id>
<pg_status>string</pg_status>
<pg_error_code>string</pg_error_code>
<pg_error_description>string</pg_error_description>
<pg_salt>string</pg_salt>
<pg_sig>string</pg_sig>
</root>
Modified at 2025-02-03 10:08:06