GET api/GetGmsProductProdId/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ProductModel| Name | Description | Type | Additional information |
|---|---|---|---|
| intProductId | integer |
None. |
|
| strProductName | string |
None. |
|
| floatContainerSize | decimal number |
None. |
|
| wstrPhraseText | string |
None. |
|
| strSupplierName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"intProductId": 1,
"strProductName": "sample string 2",
"floatContainerSize": 3.1,
"wstrPhraseText": "sample string 4",
"strSupplierName": "sample string 5"
}
application/xml, text/xml
Sample:
<ProductModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GefahrstofferfassungWappService.Models"> <floatContainerSize>3.1</floatContainerSize> <intProductId>1</intProductId> <strProductName>sample string 2</strProductName> <strSupplierName>sample string 5</strSupplierName> <wstrPhraseText>sample string 4</wstrPhraseText> </ProductModel>