Freedom Pay
  1. E-Money
Freedom Pay
  • Gateway API
    • Introduction
    • Reference
      • Test cards
      • Error codes
    • Sync API
      • Introduction
      • Page
        • Introduction
        • Page
        • Page with amount control
        • Status
      • Pay
        • Introduction
        • Card
        • 3DSecure
        • Cancel
        • Clearing
        • Refund
        • Status
      • Payout
        • Introduction
        • Card
        • IBAN
        • Balance
        • Status
        • StatusV2
      • Transfer
        • Introduction
        • Card
        • 3DSecure
        • Rates
        • Status
      • Card
        • Introduction
        • Add
        • 3DSecure
        • List
        • Remove
        • Status
      • Token
        • Introduction
        • Token Pay
        • Apple Pay
        • Google Pay
        • Samsung Pay
        • Token Payout
        • Status
    • Async API
      • Introduction
      • create
        • create payment
        • create payment recurrent
      • read
        • read payment
        • read request
      • edit
        • edit payment.refund
        • edit payment.reverse
        • edit payment.clearing
      • delete
  • Merchant API
    • Introduction
    • Reference
      • Test cards
      • Test phone numbers
      • Error codes
    • Page
      • Introduction
      • Page
      • Page with amount control
      • Payout page
      • Frame
      • Widget
      • Status
    • Pay
      • Introduction
      • Cancel
      • Clearing
      • Refund
      • Status
    • Payout
      • Introduction
      • IBAN
      • Balance
      • Status by order_id
      • Status by Payment ID
      • Status by Payment ID V2
    • Mobile balance
      • Introduction
      • Init
      • Pay
      • Approve
      • Resend code
      • Status
    • Card
      • Introduction
      • Add
      • Add for payout
      • Remove
      • List
      • Status
    • Token
      • Introduction
      • Saved card with CVC input (Init)
      • Saved card with CVC input (Pay)
      • Non-acceptance payments
      • Non-acceptance payments (Pay)
      • Token payout
      • Status
    • Invoice
      • Introduction
      • Init
      • Info
      • Pay
      • Status
    • Additional
      • Introduction
      • Check request
      • Result notify
      • Payout notify
      • Redirect back
  • Card API
    • Introduction
    • Payment Cards
      • Reference
        • Request Status
        • Client product
        • Card product
        • Card status
        • Card block
        • Transaction
        • Error codes
      • Card issue
        • Bulk
        • Single
        • Physical
      • Card control
        • Activate
        • Block
        • Unblock
        • Set PIN
        • Reset PIN counter
        • Close
        • Identification
        • Info
        • Balance
        • Secret data
        • Statement
      • Client
        • Create
        • Edit
        • Card list
      • Additional
        • Request status
    • Gift Cards
      • Introduction
      • Reference
        • Request status
        • Card status
      • List
      • Issue
      • Confirm
      • Resend
      • Resend code
      • Status
  • Partner API
    • Rates
      • Introduction
      • Rates
    • Products
      • Introduction
      • Reference
        • Request
        • Product
        • Freedom POS
        • Freedom ECOM
        • Freedom BOX
        • Limits
      • Add user
      • Add product
      • Add user with product
      • Grant user
      • Send auth data
      • Request status
    • E-Money
      • Introduction
      • Reference
        • Request
        • Operation
        • Error codes
      • Add
        POST
      • Owner identification
        POST
      • Info
        POST
      • Close
        POST
      • Block
        POST
      • Balance
        POST
      • Statement
        POST
      • Request Status
        POST
    • Freedom ID
      • Introduction
      • Android SDK
      • iOS SDK
      • Reference
        • Error codes
      • Link
      • Token
      • Token refresh
      • Info
      • Profile
      • Request
  • Mobile SDK
    • Payment SDK
      • iOS
      • Android
    • Freedom QR
      • Reader SDK (Android)
      • Provider SDK (Android)
  • CMS
    • Introduction
    • Get Merchant ID and key
    • WordPress
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
      • Update
    • Tilda
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
    • InSales
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
    • Ecwid
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
    • Bitrix
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
    • PrestaShop
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
    • OpenCart
      • Introduction
      • Installation
      • Configuration
      • Test
      • Live payments
  1. E-Money

Statement

POST
https://api.freedompay.uz/v5/partner/wallet/statement

Request

Body Params application/json
identifier
string 
required
Unique wallet identifier in the partner system.
start_date
string <date-time>
optional
Start date and time of the statement period in RFC 3339 format.
end_date
string <date-time>
optional
End date and time of the statement period in RFC 3339 format.
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.uz/v5/partner/wallet/statement' \
--header 'Content-Type: application/json' \
--data-raw '{
    "identifier": "string",
    "start_date": "2019-08-24T14:15:22Z",
    "end_date": "2019-08-24T14:15:22Z"
}'

Responses

🟢200Success
application/json
Body
status
string 
required
Shows the status of the request:
ok: Request was successful
error: Request failed.
request_status
string 
required
Shows the execution status of the request. See the reference guide for status definitions.
operations
array [object {7}] 
required
Array of operation data.
type
string 
required
Type of operation. See the reference guide for operation types.
amount
number 
required
Amount of the operation.
commission
number 
required
Commission amount.
currency
string 
required
Currency of the operation (alpha-3 format).
datetime
string <date-time>
required
Date and time of the operation in RFC 3339 format (YYYY-MM-DDThh:mm:ss±hh:mm).
rrn
string 
required
Unique identifier of the operation.
correspondent
object 
required
Object containing correspondent details.
dt
string <date-time>
required
Date and time of the request in RFC 3339 format (YYYY-MM-DDThh:mm:ss±hh:mm).
error_code
string 
required
Error code ID.
error_description
string 
required
Text description of the error.
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"
}
Previous
Balance
Next
Request Status