- Gateway API
- Introduction
- Reference
- Sync API
- Async API
- Merchant API
- Introduction
- Reference
- Page
- Pay
- Payout
- Mobile balance
- Card
- Token
- Invoice
- ATM
- Additional
- Card API
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- Mobile SDK
- CMS
Add product
POST
https://api.freedompay.uz/v5/partner/client/product/add
Request
Body Params application/json
request_id
string
required
client_id
integer
required
product
object
required
product_id
integer
required
Example
{
"request_id": "string",
"client_id": 0,
"product": {
"product_id": 0
}
}
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/v5/partner/client/product/add' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
status
string
optional
OK
: Request was successful.error
: Request encountered an error.client_id
integer
optional
product
object
optional
product_id
integer
optional
product_uuid
string <uuid>
optional
terminal_id
integer
optional
status
boolean
optional
1
: Enabled0
: Disablederror_code
integer
optional
error_description
string
optional
dt
string <date-time>
optional
Example
{
"status": "string",
"client_id": 0,
"product": {
"product_id": 0,
"product_uuid": "ef6d6af2-aef1-49f6-a502-cfed9e6fd1a9",
"terminal_id": 0,
"status": true
},
"error_code": 0,
"error_description": "string",
"dt": "2019-08-24T14:15:22Z"
}
Modified at 2025-02-03 10:55:01