List Transfers

GET/cash/{accountId}/ach/transfers

Returns a paginated list of transfer records for the specified account identifier.

Path Parameters

accountIdstringrequired

Unique account identifier

Query Parameters

pageNumintegeroptional

Page number (1-based)

pageSizeintegeroptional

Number of records per page

Response

200application/json

Paginated list of transfers

sstring

Response status indicator

dobject
d.pageNuminteger

Current page number

d.pageSizeinteger

Number of records per page

d.sortstring

Sort order of results

d.totalinteger

Total number of records

d.listobject[]
d.list[].serialNostring

Unique serial number for the transfer record

d.list[].currDateinteger

Transfer initiation date in YYYYMMDD format

d.list[].currTimestring

Transfer initiation time in HH:mm:ss format

d.list[].bankCodestring

Masked bank account number

d.list[].amountstring

Transfer amount in USD

d.list[].transferIdstring

Unique transfer identifier

d.list[].fundTypestring

Fund type: 0 = Deposit, 1 = Withdrawal

d.list[].fundChannelstring

Fund channel: 0 = ACH

d.list[].transStatusstring

Transaction status code: 1 = Completed, 3 = Canceled

d.list[].remarkstring

Last known status description

d.list[].userIdstring

Internal user identifier

d.list[].apexStatusstring

Clearing firm status

d.list[].endDateinteger

Transfer completion date in YYYYMMDD format

d.list[].endTimestring

Transfer completion time in HH:mm:ss format

d.list[].achRelationshipIdstring

ACH bank relationship identifier

d.list[].bankRoutingNumberstring

Bank routing number

d.list[].tradeAccountstring

Account id

d.list[].processStatusstring

Current processing status

d.list[].cancelStatusstring

Cancellation status

errormsgstringnull

Error message when s is not ok

Response

401application/json

Unauthorized — missing or invalid authentication

sstring
errormsgstring

Response Example

{
  "s": "ok",
  "d": {
    "pageNum": 1,
    "pageSize": 10,
    "sort": "ASC",
    "total": 71,
    "list": [
      {
        "serialNo": "20260129000082718",
        "currDate": 20260129,
        "currTime": "13:28:30",
        "bankCode": "**** **** 0976",
        "amount": "10",
        "transferId": "20260129181936",
        "fundType": "1",
        "fundChannel": "0",
        "transStatus": "1",
        "remark": "Requested",
        "userId": "3000000000",
        "apexStatus": "Completed",
        "endDate": 20260129,
        "endTime": "16:32:00",
        "achRelationshipId": "679240553ae1fc08145c63fa",
        "bankRoutingNumber": "XXXXXXXX",
        "tradeAccount": "lh000000000001",
        "processStatus": "COMPLETED",
        "cancelStatus": "NORMAL"
      }
    ]
  },
  "errormsg": null
}