Setzt Inventurdaten in MHU
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"mhu": {
"type": "string"
},
"location": {
"type": "string"
},
"quantity": {
"type": "number"
}
},
"required": [
"sessionKey",
"mhu",
"location",
"quantity"
]
}
Beispiel
{
"sessionKey": "",
"mhu": "",
"location": "",
"quantity": 0.0
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"BookInventoryCountResult": {
"type": "object",
"properties": {
"Message": {
"type": "string"
},
"Code": {
"type": "integer"
},
"Quantity": {
"type": "number"
},
"Data": {
"type": "string"
}
},
"required": [
"Message",
"Code",
"Quantity",
"Data"
]
}
},
"required": [
"BookInventoryCountResult"
]
}
Beispiel
{
"BookInventoryCountResult": {
"Message": "",
"Code": 0,
"Quantity": 0.0,
"Data": ""
}
}
Post your comment on this topic.