- 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 by Payment ID V2
POST
https://api.freedompay.kg/api/payment_status2
Request
Body Params multipart/form-data
pg_merchant_id
integer
required
pg_payment_id
integer
optional
pg_salt
string
required
pg_sig
string
required
pg_order_id
integer
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.kg/api/payment_status2' \
--form 'pg_merchant_id=""' \
--form 'pg_payment_id=""' \
--form 'pg_salt=""' \
--form 'pg_sig=""' \
--form 'pg_order_id="";type=* Order ID in the seller's system. Maximum length is 50 characters.'
Responses
🟢200Success
application/xml
Body
pg_payment_id
integer
required
If in response to the payment status check you receive payment_id = 0 within a minute, then the payment does not exist in our system.
pg_merchant_id
integer
required
pg_status
string
required
pg_payment_status
enum<string>
required
success
: Transaction completed successfully.error
: Transaction failed.process
: Used when the bank responded incorrectly, and we finalized the transfer status on our side.Allowed values:
successerrorprocess
pg_order_id
integer
required
pg_salt
string
required
pg_sig
string
required
Example
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pg_payment_id>0</pg_payment_id>
<pg_merchant_id>0</pg_merchant_id>
<pg_status>string</pg_status>
<pg_payment_status>success</pg_payment_status>
<pg_order_id>0</pg_order_id>
<pg_salt>string</pg_salt>
<pg_sig>string</pg_sig>
</root>
Modified at 2025-02-03 10:08:06