GET Account/GetMyAccounts?query={query}&page={page}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| query | string |
None. |
|
| page | integer |
None. |
|
| pageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
WebApiResultOfInnerPagedListOfMyAccountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
|
| code | string |
None. |
|
| data | InnerPagedListOfMyAccountDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"code": "sample string 3",
"data": {
"Page": 1,
"PageSize": 2,
"TotalCount": 3,
"Data": [
{
"mtAccountId": "sample string 1",
"platId": 2,
"platName": "sample string 3",
"acctName": "sample string 4",
"email": "sample string 5",
"currency": "sample string 6",
"leverage": 7,
"balance": 8.1,
"credit": 9.1,
"equity": 10.1,
"totalProfit": 11.1
},
{
"mtAccountId": "sample string 1",
"platId": 2,
"platName": "sample string 3",
"acctName": "sample string 4",
"email": "sample string 5",
"currency": "sample string 6",
"leverage": 7,
"balance": 8.1,
"credit": 9.1,
"equity": 10.1,
"totalProfit": 11.1
}
]
}
}