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