POST api/VerifyProduct

Request Information

URI Parameters

None.

Body Parameters

getMatCode
NameDescriptionTypeAdditional information
UserName

string

None.

MatCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "MatCode": "sample string 2"
}

application/xml, text/xml

Sample:
<getMatCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NDCIAPI.Models">
  <MatCode>sample string 2</MatCode>
  <UserName>sample string 1</UserName>
</getMatCode>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MaterialInfo
NameDescriptionTypeAdditional information
Matnr

string

None.

MatTxt

string

None.

MatImg

Object

None.

MatDesc

string

None.

message

string

None.

messagetype

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Matnr": "sample string 1",
  "MatTxt": "sample string 2",
  "MatImg": {},
  "MatDesc": "sample string 4",
  "message": "sample string 5",
  "messagetype": "sample string 6"
}

application/xml, text/xml

Sample:
<MaterialInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NDCIAPI.Models">
  <MatDesc>sample string 4</MatDesc>
  <MatImg />
  <MatTxt>sample string 2</MatTxt>
  <Matnr>sample string 1</Matnr>
  <message>sample string 5</message>
  <messagetype>sample string 6</messagetype>
</MaterialInfo>