GET api/Clothing/DisplayClothingItems?productId={productId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
productId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ClothingModelSuggName | Description | Type | Additional information |
---|---|---|---|
ClothingID | integer |
None. |
|
ClothingName | string |
None. |
|
ClothingImgUrl | string |
None. |
|
ClothingImgUrlAlt | string |
None. |
|
ClothingType | string |
None. |
|
ClothingCategory | string |
None. |
|
ClothingLevel | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "ClothingID": 1, "ClothingName": "sample string 2", "ClothingImgUrl": "sample string 3", "ClothingImgUrlAlt": "sample string 4", "ClothingType": "sample string 5", "ClothingCategory": "sample string 6", "ClothingLevel": 7 }
application/xml, text/xml
Sample:
<ClothingModelSugg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models"> <ClothingCategory>sample string 6</ClothingCategory> <ClothingID>1</ClothingID> <ClothingImgUrl>sample string 3</ClothingImgUrl> <ClothingImgUrlAlt>sample string 4</ClothingImgUrlAlt> <ClothingLevel>7</ClothingLevel> <ClothingName>sample string 2</ClothingName> <ClothingType>sample string 5</ClothingType> </ClothingModelSugg>