- Gateway API
- Introduction
- Reference
- Sync API
- Async API
- Merchant API
- Introduction
- Reference
- Page
- Pay
- Payout
- Mobile balance
- Card
- Token
- Invoice
- ATM
- Additional
- Card API
- Introduction
- Payment Cards
- Gift Cards
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- Mobile SDK
- CMS
Status
POST
https://api.freedompay.uz/get_status3.php
Request
Body Params multipart/form-data
pg_merchant_id
integer
required
pg_payment_id
integer
required
pg_order_id
field will be ignored.Example:
12345
pg_order_id
string
optional
Example:
00102
pg_salt
string
required
Example:
some random string
pg_sig
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.freedompay.uz/get_status3.php' \
--form 'pg_merchant_id=""' \
--form 'pg_payment_id="12345"' \
--form 'pg_order_id="00102"' \
--form 'pg_salt="some random string"' \
--form 'pg_sig=""'
Responses
🟢200Success
application/xml
Body
pg_status
string
required
Status Description
ok — Request was successful,
error — Request was successful
pg_payment_id
integer
required
pg_order_id
string
required
pg_currency
string
required
pg_amount
integer
required
pg_salt
string
required
pg_sig
string
required
pg_can_reject
boolean
optional
pg_payment_method
string
optional
Example: mobile_commerce
pg_payment_status
string
optional
pg_clearing_amount
integer
optional
pg_revoke_amount
integer
optional
pg_user_email
string
optional
pg_card_name
string
optional
pg_card_pan
string
optional
Example: 5483-18XX-XXXX-0293
pg_card_token
string
optional
pg_user_phone
string
optional
pg_payment_date
string <date-time>
optional
pg_revoked_payments
array[string]
optional
pg_refund_payments
array[string]
optional
pg_reference
integer
optional
pg_failure_code
integer
optional
pg_failure_description
string
optional
pg_captured
boolean
optional
pg_auth_code
integer
optional
Example
<?xml version="1.0" encoding="utf-8"?>
<response>
<pg_status>ok</pg_status>
<pg_payment_id>123456789</pg_payment_id>
<pg_can_reject>1</pg_can_reject>
<pg_payment_method>bankcard</pg_payment_method>
<pg_amount>10</pg_amount>
<pg_currency>KZT</pg_currency>
<pg_payment_status>success</pg_payment_status>
<pg_clearing_amount>10</pg_clearing_amount>
<pg_reference>123456789</pg_reference>
<pg_card_name>Card Holder</pg_card_name>
<pg_card_pan>5483-18XX-XXXX-0293</pg_card_pan>
<pg_card_token>ef741cfc-f85e-41a0-84e6-2ba964912182</pg_card_token>
<pg_refund_payments>
<pg_refund_payment>
<pg_payment_id>123456789</pg_payment_id>
<pg_payment_status>success</pg_payment_status>
<pg_amount>-10</pg_amount>
<pg_payment_date>2023-05-31 16:26:36</pg_payment_date>
<pg_reference>123456789</pg_reference>
</pg_refund_payment>
</pg_refund_payments>
<pg_refund_amount>-10</pg_refund_amount>
<pg_captured>1</pg_captured>
<pg_create_date>2023-05-31 16:24:20</pg_create_date>
<pg_salt>some random string</pg_salt>
<pg_sig>your_signature</pg_sig>
</response>
Modified at 2025-02-03 10:55:01