Sipay Business Api
English
  • Turkish
  • English
  1. Transaction Data
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. Transaction Data

Get Request Withdraw List By Filter

POST
/v1/TransactionData/GetRequestWithdrawListByFilter
The status of withdrawal transactions (successful, failed, pending, or rejected) can be queried through this service.
Filters such as date range, transaction amount, or a specific ext_transaction_id can be applied.
It is primarily used for tracking the state of outbound bank transfers and for reconciliation purposes.
The response includes the list of transactions along with total record count and pagination details.
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/TransactionData/GetRequestWithdrawListByFilter' \
--header 'Content-Type: application/json' \
--data-raw '{
    "process_level_status_id": 0,
    "currency_code": "\"TRY\"",
    "account_number": "string",
    "wallet_number": "string",
    "ext_transaction_id": "string",
    "begin_amount": 0,
    "end_amount": 0,
    "start_date": "2025-05-01T09:00:00Z",
    "end_date": "2025-05-01T09:05:00Z",
    "iban": "string",
    "account_type_id": 1,
    "page_size": 25000,
    "page_index": 0,
    "order_column": "CreatedDateUtc",
    "order_by": "asc",
    "is_completed": "string"
}'
Response Response Example
{
    "status": 0,
    "code": "100",
    "message": "İşlem Başarılı",
    "payload": {
        "results": [
            {
                "id": "707978930547725",
                "tenant_id": "5",
                "wallet_id": "6340377336175258637",
                "wallet_number": "547563662",
                "tx_correlation_id": 8304534634472533005,
                "ext_transaction_id": "78002174008756410068790002",
                "account_type": 1,
                "account_id": "6340504510156893197",
                "account_number": "789456123",
                "bank_id": null,
                "bank_name": null,
                "account_saved_bank_id": null,
                "is_account_owner_bank": false,
                "name": "",
                "account_holder_name": "Zeynep Solak",
                "iban": "TR700001000131655945445003",
                "accept_actions": null,
                "bank_account_no": null,
                "swift_code": "",
                "branch_code": null,
                "base_amount": 1.00,
                "currency": "TRY",
                "description": null,
                "process_level_status": 1,
                "receiver_national_id": "57427825807",
                "bank_response_json": "{\"Version\":null,\"StatusCode\":200,\"Message\":\"İşleminiz alınmıştır\",\"IsError\":false,\"ResponseException\":null,\"Result\":{\"ProcessType\":1,\"UserMessage\":\"İşleminiz alınmıştır\",\"FailureResponseMessage\":\"İşleminiz alınmıştır\",\"SuccessResponseMessage\":\"İşlem Talebi Alındı.\"}}",
                "created_date_utc": "2023-11-02T07:45:30.2038794+03:00",
                "updated_date_utc": "2023-11-02T07:45:31.0905199+03:00"
            }
        ],
        "page_index": 1,
        "last_row_index": 0,
        "page_count": 1,
        "page_size": 1,
        "row_count": 0,
        "order_column": "Id",
        "order_by": "asc"
    }
}
Previous
Summary Record By Filter
Next
Get Request Withdraw By Ext Id
Built with