- Gateway API
- Merchant API
- Card API
- Overview
- Payment Cards
- Overview
- Dictionaries
- Bulk issuePOST
- Issue cardPOST
- Issue plastic cardPOST
- Activate cardPOST
- Block cardPOST
- Unblock cardPOST
- Set PINPOST
- Reset PIN counterPOST
- Close cardPOST
- Update clientPOST
- Card infoPOST
- BalancePOST
- Secret dataPOST
- StatementPOST
- Statement extendedPOST
- Create clientPOST
- Edit clientPOST
- Сards' listPOST
- Request' statusPOST
- Create transactionPOST
- Clearing transactionPOST
- Refund transactionPOST
- Transaction request' statusPOST
- Transaction infoPOST
- Gift Cards
- Partner API
- Mobile SDK
- CMS
Create client
POST
https://api.freedompay.kz/v5/card-api/client/add
client_id
, which is then used to link the client to issued payment cards.After creation, the
client_id
can be used in other methods, such as updating client data or linking the client to a specific card.Request
Body Params application/json
request_id
string
required
product_id
integer
required
branch_id
string
optional
client
object
required
phone
integer
required
type
integer
required
resident
integer
required
first_name
string
required
last_name
string
required
middle_name
string
optional
birthdate
string <date>
optional
YYYY-MM-DD
).email
string
optional
country
string
optional
person_id
string
optional
language
string
optional
document
string
optional
external_user_id
string
optional
address1
object
optional
address2
object
optional
identification_info
object
optional
idn_date
string
required
YYYY-MM-DDThh:mm:ss+hh:mm
).identified_by
string
required
Example
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/card-api/client/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.request_status
string
required
dt
string <date-time>
required
YYYY-MM-DDThh:mm:ss+hh:mm
).Example
{
"status": "string",
"request_status": "string",
"dt": "2019-08-24T14:15:22Z"
}
Modified at 2025-03-01 07:09:12