Setzt Inventurdaten in mehreren MHU gleichzeitig
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"inventoryList": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"Mhu": {
"type": "string"
},
"Location": {
"type": "string"
},
"Quantity": {
"type": "number"
}
},
"required": [
"Mhu",
"Location",
"Quantity"
]
}
]
}
},
"required": [
"sessionKey",
"inventoryList"
]
}
Beispiel
{
"sessionKey": "",
"inventoryList": [
{
"Mhu": "",
"Location": "",
"Quantity": 0.0
}
]
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"BookInventoryCountListResult": {
"type": "object",
"properties": {
"InventoryCountingResult": {
"type": "boolean"
},
"Errors": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"Message": {
"type": "string"
},
"Code": {
"type": "integer"
},
"Quantity": {
"type": "number"
},
"Data": {
"type": "string"
}
},
"required": [
"Message",
"Code",
"Quantity",
"Data"
]
}
]
}
},
"required": [
"InventoryCountingResult",
"Errors"
]
}
},
"required": [
"BookInventoryCountListResult"
]
}
Beispiel
{
"BookInventoryCountListResult": {
"InventoryCountingResult": false,
"Errors": [
{
"Message": "",
"Code": 0,
"Quantity": 0.0,
"Data": ""
}
]
}
}
Post your comment on this topic.