GET api/ProductPage/GetProductDetail?ProductPageId={ProductPageId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductPageId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductPageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| ProductName | string |
None. |
|
| AppId | integer |
None. |
|
| ProductImage | string |
None. |
|
| ProductURL | string |
None. |
|
| ProductVersion | string |
None. |
|
| ProductCaption | string |
None. |
|
| ProductDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseMessage": "sample string 2",
"ProductName": "sample string 3",
"AppId": 1,
"ProductImage": "sample string 4",
"ProductURL": "sample string 5",
"ProductVersion": "sample string 6",
"ProductCaption": "sample string 7",
"ProductDescription": "sample string 8"
}
application/xml, text/xml
Sample:
<ProductPageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IPMSAPIV1.Entity"> <AppId>1</AppId> <ProductCaption>sample string 7</ProductCaption> <ProductDescription>sample string 8</ProductDescription> <ProductImage>sample string 4</ProductImage> <ProductName>sample string 3</ProductName> <ProductURL>sample string 5</ProductURL> <ProductVersion>sample string 6</ProductVersion> <ResponseCode>1</ResponseCode> <ResponseMessage>sample string 2</ResponseMessage> </ProductPageResponse>