- 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
POST
https://api.freedompay.kg/v5/partner/client/user/add
Request
Body Params application/json
request_id
string
required
client_id
integer
required
user_info
object
required
first_name
string
required
last_name
string
required
phone
string
required
email
string
required
Example
{
"request_id": "string",
"client_id": 0,
"user_info": {
"first_name": "string",
"last_name": "string",
"phone": "string",
"email": "string"
}
}
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/v5/partner/client/user/add' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
status
string
required
ok
: Request completed successfully.error
: Request completed with an error.client_id
integer
required
user_id
integer
required
error_code
integer
required
error_description
string
required
dt
string <date-time>
required
YYYY-MM-DDThh:mm:ss+hh:mm
).Example
{
"status": "string",
"client_id": 0,
"user_id": 0,
"error_code": 0,
"error_description": "string",
"dt": "2019-08-24T14:15:22Z"
}
Modified at 2025-02-03 10:08:06