GET api/GetGmsProduct/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

ProductModel
NameDescriptionTypeAdditional 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>