POST api/Tv/GetAccountTransactionList

获取用户账户流水列表(201904)

Request Information

URI Parameters

None.

Body Parameters

GetAccountTransactionRequest
NameDescriptionTypeAdditional information
CustomerCode

用户编号

string

None.

PageIndex

页码

integer

None.

PageSize

每页多少条

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "customerCode": "sample string 1",
  "pageIndex": 2,
  "pageSize": 3
}

Response Information

Resource Description

获取用户账户流水列表(201904)

PageListResponseOfGetAccountTransactionResponse
NameDescriptionTypeAdditional information
Page

PageInfo

None.

List

Collection of GetAccountTransactionResponse

None.

Other

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "page": {
    "pageIndex": 1,
    "pageSize": 2,
    "totalCount": 3
  },
  "list": [
    {
      "customerCode": "sample string 1",
      "accountCode": "sample string 2",
      "accountName": "sample string 3",
      "amount": 4.0,
      "sourceTransaction": "sample string 5",
      "sourceType": "sample string 6",
      "sourceTypeDesc": "sample string 7",
      "createdOn": "2025-06-07T14:57:17.7438487+08:00"
    },
    {
      "customerCode": "sample string 1",
      "accountCode": "sample string 2",
      "accountName": "sample string 3",
      "amount": 4.0,
      "sourceTransaction": "sample string 5",
      "sourceType": "sample string 6",
      "sourceTypeDesc": "sample string 7",
      "createdOn": "2025-06-07T14:57:17.7438487+08:00"
    }
  ],
  "other": {}
}