Liefert Informationen zu allen MHU auf einem Platz, die einen bestimmten Artikel enthalten
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"itemcode": {
"type": "string"
},
"locationid": {
"type": "string"
}
},
"required": [
"sessionKey",
"itemcode",
"locationid"
]
}
Beispiel
{
"sessionKey": "",
"itemcode": "",
"locationid": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"GetMHUsResult": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"Code": {
"type": "string"
},
"Type": {
"type": "string"
},
"Kennung": {
"type": "string"
},
"OnStock": {
"type": "number"
},
"ItemCode": {
"type": "string"
},
"ItemName": {
"type": "string"
},
"Inhalt": {
"type": "number"
},
"Gebinde": {
"type": "string"
}
},
"required": [
"Code",
"Type",
"Kennung",
"OnStock",
"ItemCode",
"ItemName",
"Inhalt",
"Gebinde"
]
}
]
}
},
"required": [
"GetLOCInfoResult"
]
}
Beispiel
{
"GetMHUsResult": [
{
"Code": "",
"Type": "",
"Kennung": "",
"OnStock": 0.0,
"ItemCode": "",
"ItemName": "",
"Inhalt": 0.0,
"Gebinde": ""
}
]
}
Post your comment on this topic.