GET api/Skin/skinList?category={category}&searchKey={searchKey}&pageIndex={pageIndex}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| category | string |
Required |
|
| searchKey | string |
Required |
|
| pageIndex | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PublicSkinPageObject| Name | Description | Type | Additional information |
|---|---|---|---|
| results | Collection of SkinPublic |
None. |
|
| RowCount | integer |
None. |
|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": [
{
"id": "sample string 1",
"category": "sample string 2",
"name": "sample string 3",
"thumbUrl": "sample string 4",
"previewPhotoUrl": "sample string 5"
},
{
"id": "sample string 1",
"category": "sample string 2",
"name": "sample string 3",
"thumbUrl": "sample string 4",
"previewPhotoUrl": "sample string 5"
}
],
"RowCount": 1,
"PageIndex": 2,
"PageSize": 3
}
application/xml, text/xml
Sample:
<PublicSkinPageObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBarmaso.Models">
<PageIndex>2</PageIndex>
<PageSize>3</PageSize>
<RowCount>1</RowCount>
<results>
<SkinPublic>
<category>sample string 2</category>
<id>sample string 1</id>
<name>sample string 3</name>
<previewPhotoUrl>sample string 5</previewPhotoUrl>
<thumbUrl>sample string 4</thumbUrl>
</SkinPublic>
<SkinPublic>
<category>sample string 2</category>
<id>sample string 1</id>
<name>sample string 3</name>
<previewPhotoUrl>sample string 5</previewPhotoUrl>
<thumbUrl>sample string 4</thumbUrl>
</SkinPublic>
</results>
</PublicSkinPageObject>