# V2 Withdraw Settlement
Merchants use this API to query the underlying fund transaction details under a specific withdraw batch (by withdrawLogId).
# API Information
API
Request API: /api/v2/recon/withdraw-settlement/{logId}
Method: GET
# Path Parameters
| Field Name | Variable | Required | Type | Example | Description |
|---|---|---|---|---|---|
| Withdraw ID | logId | Yes | long | 88001 | The record ID of the withdraw log |
# Request Parameters
| Field Name | Variable | Required | Type | Example | Description |
|---|---|---|---|---|---|
| Page Num | pageNum | No | int | 1 | Default is 1 |
| Page Size | pageSize | No | int | 20 | Default 20, Max 100 |
# Response Parameters
| Field Name | Variable | Required | Type | Example | Description |
|---|---|---|---|---|---|
| Records | records | Yes | List | List of daily transaction records | |
| Total | total | Yes | long | 100 | Total records matched |
| Current Page | current | Yes | long | 1 | Current page number |
| Has Next | hasNext | Yes | boolean | true | Whether there is a next page |
# records Data Structure
| Field Name | Variable | Required | Type | Example | Description |
|---|---|---|---|---|---|
| Log ID | logId | Yes | long | 55001 | MchAccountDailyV2 primary key |
| Log Date | logDate | Yes | String(10) | 2026-06-24 | The date the funds were settled |
| Amount | editAmount | Yes | long | 50000 | Transaction amount (in micro units) |
| State | state | Yes | int | 1 | 1-Reconciled, 0-Unreconciled |
| Ref ID | refId | No | String | PO_20260624_01 | Original pay order ID or refund ID |
| Ref Type | refType | No | String | PayOrder | PayOrder, RefundOrder etc. |
| Trace ID | settlementTraceId | No | String | ST_TRACE_01 | Gateway settlement trace ID |
| Currency | originalCurrency | No | String(3) | EUR | Original transaction currency |
| Orig Amt | originalAmount | No | long | 45000 | Original transaction amount (in micro units) |