- 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
- CMS
Agent List
Developing
GET
https://api.freedompay.kz/v5/partner/transfer/agent/list
Request
Header Params
Authorization
string
required
Example:
Bearer <access_token>
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 GET 'https://api.freedompay.kz/v5/partner/transfer/agent/list' \
--header 'Authorization: Bearer <access_token>'
Responses
🟢200Success
application/json
Body
agents
array [object {9}]
required
id
string <uuid>
required
<= 36 characters
name
string
required
<= 100 characters
currency
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
phone
string
required
<= 20 characters
code
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
country
string
required
(ISO 3166-1 alpha-3)
<= 3 characters
transfer_type
array[string]
required
(ISO 3166-1 alpha-3)
Allowed values:
NMBCNT
address
array [object {3}]
required
response_time
string
required
Example
{
"agents": [
{
"id": "abcd-1234-efgh-5678",
"name": "Agent A",
"currency": "KZT",
"phone": "+77070000001"
"code": "NBK",
"country": "KAZ",
"transfer_type": ["NMB", "CNT"],
"address": [
"city": "Алматы",
"street": "Абая",
"postcode": "050000"
]
},
{
"id": "abcd-1234-efgh-8765",
"name": "Agent B",
"currency": "UZB",
"phone": "+77070000000"
"code": "NBK",
"country": "UZB",
"transfer_type": ["CNTR"],
"address": [
"city": "Ташкент",
"street": "Зиёлилар",
"postcode": "100085"
}
}
],
"response_time": "2025-03-31T10:35:21.000Z"
}
Modified at 2025-04-02 13:48:07