- 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 user with product
POST
https://api.freedompay.uz/v5/partner/client/add
Request
Body Params application/json
request_id
string
required
company
object
required
company_id
string
required
name
string
required
bin
string
required
address
object
required
iban
string
required
description
string
required
legal_type
string
required
product
object
optional
Example
{
"request_id": "string",
"company": {
"company_id": "string",
"name": "string",
"bin": "string",
"address": {
"country": "string",
"postal_code": "string",
"address_line1": "string",
"address_line2": "string",
"address_line3": "string"
},
"iban": "string",
"description": "string",
"legal_type": "string"
},
"product": {}
}
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/add' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
status
string
optional
ok
: Request completed successfully.error
: Request completed with an error.request_status
string
optional
dt
string <date-time>
optional
YYYY-MM-DDThh:mm:ss+hh:mm
).Example
{
"status": "string",
"request_status": "string",
"dt": "2019-08-24T14:15:22Z"
}
Modified at 2025-02-03 10:55:01