Liefert Informationen zum aktiven Produktionsabruf auf einem Platz
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"location": {
"type": "string"
}
},
"required": [
"sessionKey",
"location"
]
}
Beispiel
{
"sessionKey": "",
"location": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"GetPaInfoResult": {
"type": "object",
"properties": {
"PaNr": {
"type": "string"
},
"ItemCode": {
"type": "string"
},
"ItemName": {
"type": "string"
},
"QuantityToProduce": {
"type": "number"
},
"ProducedQuantity": {
"type": "number"
}
},
"required": [
"PaNr",
"ItemCode",
"ItemName",
"QuantityToProduce",
"ProducedQuantity"
]
}
},
"required": [
"GetPaInfoResult"
]
}
Beispiel
{
"GetPaInfoResult": {
"PaNr": "",
"ItemCode": "",
"ItemName": "",
"QuantityToProduce": 0.0,
"ProducedQuantity": 0.0
}
}
Hinterlasse einen Kommentar.