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