POST api/Tv/GetRewardTransactionList
获取打赏列表(201904)
Request Information
URI Parameters
None.
Body Parameters
GetRewardTransactionRequest| Name | 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)
PageListResponseOfGetRewardTransactionResponse| Name | 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-12-06T02:56:21.8724737+08:00"
},
{
"fromCustomerCode": "sample string 1",
"toCustomerCode": "sample string 2",
"giftCode": "sample string 3",
"quantity": 4,
"unitPrice": 5.0,
"createdOn": "2025-12-06T02:56:21.8724737+08:00"
}
],
"other": {}
}