Sipay Business Api
English
  • Turkish
  • English
  1. Wallet
Sipay Business Api
English
  • Turkish
  • English
  • Overview
    • Sipay Business API
    • Partner Wallet Flow Guide
  • Authentication
    • Get Access Token
      POST
  • Account
    • Get Business Account
      POST
    • Check Personal Wallet (AccountNumber)
      POST
    • Check Personal Wallet (PhoneNumber)
      POST
  • Wallet
    • Create Wallet For Business Account
      POST
    • Wallet Info
      POST
    • Wallet List By Filter
      POST
  • Transaction
    • Business To Personal Transfer
      POST
    • Business To Business Transfer
      POST
    • Send Money To Bank Account
      POST
    • Transfer To Virement
      POST
  • Transaction Data
    • Transaction Type Code List
    • How to payout status check?
    • Summary Record By Filter
      POST
    • Get Request Withdraw List By Filter
      POST
    • Get Request Withdraw By Ext Id
      POST
    • Transaction Receipt
      POST
  • Webhook
    • Bank Transfer Webhook
    • Top-up Webhook
    • Failed Top-Up Webhook
  1. Wallet

Wallet List By Filter

POST
/v1/Wallet/ListByFilter
Used to list wallets belonging to the business account with optional filters.
Supports filtering by sorting, pagination, KYC level, currency, and date range.
The response includes total record count and number of pages.
You’ll get the token from 'https://idsuat.walletgate.io', and all API operations will go through https://stsapiuat.walletgate.io.
We’ll share the exact production domain details when the live environment setup begins.

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Successful response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/Wallet/ListByFilter' \
--header 'Content-Type: application/json' \
--data-raw '{
    "start_date": "2025-06-01T08:03:46.000Z",
    "end_date": "2025-06-16T08:03:49.000Z",
    "account_type_id": 2,
    "currency_code": "TRY",
    "page_index": 1,
    "page_size": 25,
    "order_column": "CreatedDateUtc",
    "order_by": "desc"
}'
Response Response Example
{
    "status": 0,
    "code": null,
    "message": null,
    "payload": {
        "results": [
            {
                "id": "2111111222222333333",
                "tenant_id": "1",
                "name": "Cüzdan 1",
                "account_number": "5788107230",
                "account_type": "Business",
                "created_date_utc": "2025-03-05T13:14:26.9384315+00:00",
                "updated_date_utc": "2025-03-10T10:21:29.7565706+00:00",
                "number": "1357662887",
                "fast_iban": "TR700083801024001357662887",
                "phone_country_code": "90",
                "phone_number": "9996506645",
                "email": "abisai.fidencio@themodish.org",
                "total_balance": 59965.0000,
                "monthly_incoming_total": 200000.0000,
                "monthly_outgoing_total": 4114.0000,
                "access_level_status_id": 1,
                "access_level_status": "Aktif",
                "payment_balance": {
                    "available": 0.0000,
                    "unavailable": 0.0000
                },
                "cash_balance": {
                    "available": 59965.0000,
                    "unavailable": 0.0000
                },
                "transaction_limits": {
                    "max_balance": 200000.0000,
                    "topup_credit_limit": 0.0000,
                    "topup_cash_limit": 0.0000,
                    "withdrawal_limit": 195931.0000,
                    "payment_limit": 200000.0000,
                    "wallet_to_wallet_limit": 199955.0000
                },
                "kyc_level_status": "Contracted",
                "currency_code": "TRY",
                "user_kyc_info": {
                    "first_name": " X işletmesi",
                    "last_name": "abcd",
                    "birth_year": 1900,
                    "kyc_level": 40,
                    "kyc_level_status": "Contracted",
                    "national_id": "11111111111",
                    "sector_id": "10",
                    "mother_name": "abc",
                    "father_name": "abc",
                    "register_type": null,
                    "monthly_income": null,
                    "income_source": null,
                    "monthly_transaction_volume": null,
                    "monthly_transaction_count": null,
                    "security_question": null
                },
                "is_topup_default": false,
                "tax_number": "1111111111",
                "loyalty_record_required": true,
                "ext_account_number": null,
                "is_hidden": false
            }
        ],
        "page_index": 0,
        "last_row_index": 0,
        "page_count": 1,
        "page_size": 50,
        "row_count": 1,
        "order_column": "Id",
        "order_by": null
    }
}
Previous
Wallet Info
Next
Business To Personal Transfer
Built with