POST api/Tv/GetRewardTransactionList
获取打赏列表(201904)
Request Information
URI Parameters
None.
Body Parameters
GetRewardTransactionRequestName | Description | Type | Additional information |
---|---|---|---|
FromCustomerCode |
打赏用户编号 |
string |
None. |
PageIndex |
页码 |
integer |
None. |
PageSize |
每页多少条 |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "fromCustomerCode": "sample string 1", "pageIndex": 2, "pageSize": 3 }
Response Information
Resource Description
获取打赏列表(201904)
PageListResponseOfGetRewardTransactionResponseName | Description | Type | Additional information |
---|---|---|---|
Page | PageInfo |
None. |
|
List | Collection of GetRewardTransactionResponse |
None. |
|
Other | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "page": { "pageIndex": 1, "pageSize": 2, "totalCount": 3 }, "list": [ { "fromCustomerCode": "sample string 1", "toCustomerCode": "sample string 2", "giftCode": "sample string 3", "quantity": 4, "unitPrice": 5.0, "createdOn": "2025-06-07T11:03:03.6818451+08:00" }, { "fromCustomerCode": "sample string 1", "toCustomerCode": "sample string 2", "giftCode": "sample string 3", "quantity": 4, "unitPrice": 5.0, "createdOn": "2025-06-07T11:03:03.6818451+08:00" } ], "other": {} }