GET api/Skin/List?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
SkinPageObject| Name | Description | Type | Additional information |
|---|---|---|---|
| results | Collection of Skin |
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",
"isActive": "sample string 4",
"orderId": 5,
"photoUrl": "sample string 6",
"thumbUrl": "sample string 7",
"previewPhotoUrl": "sample string 8",
"photoUrlBackup": "sample string 9",
"thumbUrlBackup": "sample string 10",
"previewPhotoUrlBackup": "sample string 11"
},
{
"id": "sample string 1",
"category": "sample string 2",
"name": "sample string 3",
"isActive": "sample string 4",
"orderId": 5,
"photoUrl": "sample string 6",
"thumbUrl": "sample string 7",
"previewPhotoUrl": "sample string 8",
"photoUrlBackup": "sample string 9",
"thumbUrlBackup": "sample string 10",
"previewPhotoUrlBackup": "sample string 11"
}
],
"RowCount": 1,
"PageIndex": 2,
"PageSize": 3
}
application/xml, text/xml
Sample:
<SkinPageObject 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>
<Skin>
<category>sample string 2</category>
<id>sample string 1</id>
<isActive>sample string 4</isActive>
<name>sample string 3</name>
<orderId>5</orderId>
<photoUrl>sample string 6</photoUrl>
<photoUrlBackup>sample string 9</photoUrlBackup>
<previewPhotoUrl>sample string 8</previewPhotoUrl>
<previewPhotoUrlBackup>sample string 11</previewPhotoUrlBackup>
<thumbUrl>sample string 7</thumbUrl>
<thumbUrlBackup>sample string 10</thumbUrlBackup>
</Skin>
<Skin>
<category>sample string 2</category>
<id>sample string 1</id>
<isActive>sample string 4</isActive>
<name>sample string 3</name>
<orderId>5</orderId>
<photoUrl>sample string 6</photoUrl>
<photoUrlBackup>sample string 9</photoUrlBackup>
<previewPhotoUrl>sample string 8</previewPhotoUrl>
<previewPhotoUrlBackup>sample string 11</previewPhotoUrlBackup>
<thumbUrl>sample string 7</thumbUrl>
<thumbUrlBackup>sample string 10</thumbUrlBackup>
</Skin>
</results>
</SkinPageObject>