- Gateway API
- Overview
- Sync API
- Async API
- Merchant API
- Card API
- Overview
- Payment Cards
- Overview
- Dictionaries
- Bulk issue
- Issue card
- Issue plastic card
- Activate card
- Block card
- Unblock card
- Set PIN
- Reset PIN counter
- Close card
- Update client
- Card info
- Balance
- Secret data
- Statement
- Statement extended
- Create client
- Edit client
- Сards' list
- Request' status
- Create transaction
- Clearing transaction
- Refund transaction
- Transaction request' status
- Transaction info
- Gift Cards
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- IMTS "Leskar"
- Mobile SDK
- Payment SDK
- Freedom QR
- CMS
Add client with product
POST
https://api.freedompay.kz/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
optional
description
string
optional
legal_type
string
optional
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.kz/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-03-18 05:00:10