- Overview
- 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
- Secret data (version 2)POST
- Operations' listPOST
- Statement extendedPOST
- Create clientPOST
- Edit clientPOST
- Сards' listPOST
- Request' statusPOST
- Create transactionPOST
- Clearing transactionPOST
- Refund transactionPOST
- Transaction infoPOST
- Cardholder validationPOST
- Gift Cards
- Partner API
Cardholder validation
POST
https://api.freedompay.kz/v5/card-api/external/cardholder_validate
Request
Body Params application/json
user_phone
string
required
first_name
string
required
last_name
string
required
card_token
string <uuid>
required
request_id
string <uuid>
required
Example
POST /v5/partner/external/cardholder_validate
Content-Type: application/json
X-JWS-Signature: {JWS}
{
"user_phone": "7077070707",
"first_name": "Ivan",
"last_name": "Ivanov",
"card_token": "00000000-0000-0000-0000-000000000000",
"request_id": "9a1c6959-2188-4292-a48e-aeb586204676"
}
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/external/cardholder_validate' \
--header 'Content-Type: application/json' \
--data-raw 'POST /v5/partner/external/cardholder_validate
Content-Type: application/json
X-JWS-Signature: {JWS}
{
"user_phone": "7077070707",
"first_name": "Ivan",
"last_name": "Ivanov",
"card_token": "00000000-0000-0000-0000-000000000000",
"request_id": "9a1c6959-2188-4292-a48e-aeb586204676"
}'
Responses
🟢200Success
application/json
Body
status
string
required
score
string
required
fishy
integer
optional
dt
string
required
Examples
{
"status": "ok",
"score": "44.37%",
"fishy": 1,
"dt": "2025-05-27T15:22:40Z"
}
Modified at 2025-06-11 07:28:26