POST V2/Vote/GetList
Request Information
URI Parameters
None.
Body Parameters
VoteCond| Name | Description | Type | Additional information |
|---|---|---|---|
| PageInfo | PageInfo |
None. |
|
| Key | string |
None. |
|
| ClassId | globally unique identifier |
None. |
|
| VoteKeys | Collection of string |
None. |
|
| ClassKeys | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageInfo": {
"Page": 1,
"PageSize": 2,
"Offset": 0,
"SortName": "sample string 3",
"SortOrder": "sample string 4"
},
"Key": "sample string 1",
"ClassId": "ba775b58-9003-4dcd-9d03-23d3fe1686fb",
"VoteKeys": [
"sample string 1",
"sample string 2"
],
"ClassKeys": [
"sample string 1",
"sample string 2"
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PageDataOfVoteItemView| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalPage | integer |
None. |
|
| TotalRecord | integer |
None. |
|
| Data | Collection of VoteItemView |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| Offset | integer |
None. |
|
| SortName | string |
None. |
|
| SortOrder | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalPage": 1,
"TotalRecord": 1,
"Data": [
{
"Id": "68f6e5a4-21c2-45aa-bd52-472ca42b1c58",
"Name": "sample string 2",
"Info": "sample string 3",
"Image": "sample string 4",
"Qty": 5,
"VoteKey": "sample string 6",
"Rand": 7,
"L": 8,
"VoteClass": {
"Id": "5156fcff-ff56-44e3-95b9-89eb672cd7e4",
"ClassName": "sample string 2",
"ClassLogo": "sample string 3",
"Type": "sample string 4"
}
},
{
"Id": "68f6e5a4-21c2-45aa-bd52-472ca42b1c58",
"Name": "sample string 2",
"Info": "sample string 3",
"Image": "sample string 4",
"Qty": 5,
"VoteKey": "sample string 6",
"Rand": 7,
"L": 8,
"VoteClass": {
"Id": "5156fcff-ff56-44e3-95b9-89eb672cd7e4",
"ClassName": "sample string 2",
"ClassLogo": "sample string 3",
"Type": "sample string 4"
}
}
],
"Page": 2,
"PageSize": 3,
"Offset": 3,
"SortName": "sample string 4",
"SortOrder": "sample string 5"
}