POST api/user/profit/report
Get user report - trading profit
Request Information
URI Parameters
None.
Body Parameters
ReportInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Year | integer |
None. |
|
| SecurityToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Year": 1,
"SecurityToken": "sample string 2"
}
Response Information
Resource Description
Collection of RealTradeRecord| Name | Description | Type | Additional information |
|---|---|---|---|
| Year | integer |
None. |
|
| Month | integer |
None. |
|
| Volume | decimal number |
None. |
|
| Profit | decimal number |
None. |
|
| Currency | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Year": 1,
"Month": 1,
"Volume": 1.1,
"Profit": 1.1,
"Currency": "sample string 1"
},
{
"Year": 1,
"Month": 1,
"Volume": 1.1,
"Profit": 1.1,
"Currency": "sample string 1"
}
]