POST api/Points/MyPointsTradeRecord
我的积分交易记录 (分页)
Request Information
URI Parameters
None.
Body Parameters
PagingModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| Page | 
                         页码 (从1开始)  | 
                    integer | 
                             None.  | 
                
| PageSize | 
                         分页大小  | 
                    integer | 
                             None.  | 
                
| Sort | 
                         排序字段  | 
                    string | 
                             None.  | 
                
| Order | 
                         排序方向  | 
                    SortDirection | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "Page": 1,
  "PageSize": 2,
  "Sort": "sample string 3",
  "Order": 1
}
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
ApiReturnModelOfListOfPointsTradeModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| Code | ReturnCode | 
                             None.  | 
                |
| Message | string | 
                             None.  | 
                |
| Data | Collection of PointsTradeModel | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
{
  "Code": 0,
  "Message": "sample string 1",
  "Data": [
    {
      "Title": "sample string 1",
      "TradeTime": "2025/11/04 20:13:33",
      "Points": 3.0
    },
    {
      "Title": "sample string 1",
      "TradeTime": "2025/11/04 20:13:33",
      "Points": 3.0
    }
  ]
}