- Gateway API
- Introduction
- Reference
- Sync API
- Async API
- Merchant API
- Introduction
- Reference
- Page
- Pay
- Payout
- Mobile balance
- Card
- Token
- Invoice
- ATM
- Additional
- Card API
- Partner API
- Rates
- Products
- E-Money
- Freedom ID
- Mobile SDK
- CMS
Statement
POST
https://api.freedompay.kg/v5/partner/wallet/statement
Request
Body Params application/json
identifier
string
required
start_date
string <date-time>
optional
end_date
string <date-time>
optional
Example
{
"identifier": "string",
"start_date": "2019-08-24T14:15:22Z",
"end_date": "2019-08-24T14:15:22Z"
}
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.kg/v5/partner/wallet/statement' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
status
string
required
ok
: Request was successfulerror
: Request failed.request_status
string
required
operations
array [object {7}]
required
type
string
required
amount
number
required
commission
number
required
currency
string
required
datetime
string <date-time>
required
rrn
string
required
correspondent
object
required
dt
string <date-time>
required
error_code
string
required
error_description
string
required
Example
{
"status": "string",
"request_status": "string",
"operations": [
{
"type": "string",
"amount": 0,
"commission": 0,
"currency": "string",
"datetime": "2019-08-24T14:15:22Z",
"rrn": "string",
"correspondent": {
"name": "string",
"account_number": "string"
}
}
],
"dt": "2019-08-24T14:15:22Z",
"error_code": "string",
"error_description": "string"
}
Modified at 2025-02-03 10:08:06