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

Owner identification

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

Request

Body Params application/json
request_id
string <uuid>
required
Unique request number in the partner's system (UUID).
identifier
string 
required
Unique wallet identifier from the partner.
owner
object 
required
Wallet owner's data.
first_name
string 
required
Wallet owner's first name.
last_name
string 
required
Wallet owner's last name.
middle_name
string 
optional
Wallet owner's middle name.
birthdate
string <date>
optional
Wallet owner's date of birth (Format: YYYY-MM-DD).
phone
integer 
required
Wallet owner's phone number.
email
string 
optional
Wallet owner's email address.
country
string 
required
Wallet owner's country of residency (alpha-3 format).
person_id
string 
required
Wallet owner's identifier in the country of residency (e.g., Tax ID for Kazakhstan, Personal ID for Russia).
language
string 
optional
Wallet owner's communication language (alpha-2 format).
document
string 
required
Scanned copy of the wallet owner's identity document:
File format: PDF
Base64 encoding
Max size: 2 MB.
address1
object 
required
Registration address data object.
address2
object 
required
Residential address data object.
identification_info
object 
required
Wallet owner's identification data object.
Example
{
  "request_id": "266ea41d-adf5-480b-af50-15b940c2b846",
  "identifier": "string",
  "owner": {
    "first_name": "string",
    "last_name": "string",
    "middle_name": "string",
    "birthdate": "2019-08-24",
    "phone": 0,
    "email": "string",
    "country": "string",
    "person_id": "string",
    "language": "string",
    "document": "string",
    "address1": {
      "country": "string",
      "postal_code": "string",
      "address_line1": "string",
      "address_line2": "string",
      "address_line3": "string"
    },
    "address2": {
      "country": "string",
      "postal_code": "string",
      "address_line1": "string",
      "address_line2": "string",
      "address_line3": "string"
    },
    "identification_info": {
      "idn_date": "2019-08-24T14:15:22Z",
      "identified_by": "string"
    }
  }
}

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/identify' \
--header 'Content-Type: application/json' \
--data-raw '{
    "request_id": "266ea41d-adf5-480b-af50-15b940c2b846",
    "identifier": "string",
    "owner": {
        "first_name": "string",
        "last_name": "string",
        "middle_name": "string",
        "birthdate": "2019-08-24",
        "phone": 0,
        "email": "string",
        "country": "string",
        "person_id": "string",
        "language": "string",
        "document": "string",
        "address1": {
            "country": "string",
            "postal_code": "string",
            "address_line1": "string",
            "address_line2": "string",
            "address_line3": "string"
        },
        "address2": {
            "country": "string",
            "postal_code": "string",
            "address_line1": "string",
            "address_line2": "string",
            "address_line3": "string"
        },
        "identification_info": {
            "idn_date": "2019-08-24T14:15:22Z",
            "identified_by": "string"
        }
    }
}'

Responses

🟢200Success
application/json
Body
status
string 
required
Indicates the request status:
ok: Request completed successfully.
error: Request failed with an error.
request_status
string 
required
Status of request execution. Refer to the status guide.
dt
string <date-time>
required
Date and time of the request in RFC 3339 format.
Format: YYYY-MM-DDThh:mm:ss+hh:mm.
error_code
string 
optional
Error code ID. Returned only in case of errors.
error_description
string 
optional
Text description of the error. Returned only in case of errors.
Example
{
  "status": "string",
  "request_status": "string",
  "dt": "2019-08-24T14:15:22Z",
  "error_code": "string",
  "error_description": "string"
}
Previous
Add
Next
Info