- 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
Approve
POST
https://api.freedompay.uz/mfs/approve
Request
Body Params multipart/form-data
pg_merchant_id
integer
required
pg_payment_id
integer
required
Example:
12345
pg_approval_code
string
required
Example:
077587
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/mfs/approve' \
--form 'pg_merchant_id=""' \
--form 'pg_payment_id="12345"' \
--form 'pg_approval_code="077587"' \
--form 'pg_salt="some random string"' \
--form 'pg_sig=""'
Responses
🟢200Success
application/xml
Body
pg_status
string
required
ok
: Debit successful.process
: Debit to process. error
: Debit error.pg_payment_id
integer
required
Example
<?xml version="1.0" encoding="UTF-8"?>
<root>
<pg_status>string</pg_status>
<pg_payment_id>0</pg_payment_id>
</root>
Modified at 2025-02-03 10:55:01