- Gateway API
- Introduction
- Reference
- Sync API
- Async API
- Merchant API
- Introduction
- Reference
- Page
- Pay
- Payout
- Mobile balance
- Card
- Token
- Invoice
- ATM
- Additional
- Card API
- Introduction
- Payment Cards
- Gift Cards
- Partner API
- Mobile SDK
- CMS
Issue
POST
https://api.freedompay.uz/v5/cards/issue_card
Request
Body Params application/json
cardholder_name
string
required
phone
integer
required
product_code
integer
required
card_id
integer
optional
Example
{
"cardholder_name": "IVANOV IVAN IVANOVICH",
"phone": 79651234567,
"product_code": 1
}
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/cards/issue_card' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardholder_name": "IVANOV IVAN IVANOVICH",
"phone": 79651234567,
"product_code": 1
}'
Responses
🟢200Success
application/json
Body
datetime
string
required
status
integer
required
card_id
integer
required
Example
{
"datetime": "2022-05-01 12:01:15",
"status": 0,
"card_id": 555
}
Modified at 2025-02-03 10:55:01