Führt Produktionsrückmeldung durch
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"location": {
"type": "string"
},
"quantity": {
"type": "number"
},
"additionalRequests": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"ProductionFrameDocEntry": {
"type": "integer"
},
"ProductionFrameDocNum": {
"type": "integer"
},
"RejectionReasonCode": {
"type": "string"
},
"RejectionReasonName": {
"type": "string"
},
"ProducedQuantity": {
"type": "number"
},
"RejectedQuantity": {
"type": "number"
},
"CallOffDocNum": {
"type": "integer"
},
"OrderQuantity": {
"type": "number"
}
},
"required": [
"ProductionFrameDocEntry",
"ProductionFrameDocNum",
"RejectionReasonCode",
"RejectionReasonName",
"ProducedQuantity",
"RejectedQuantity",
"CallOffDocNum",
"OrderQuantity"
]
}
]
}
},
"required": [
"sessionKey",
"location",
"quantity",
"additionalRequests"
]
}
Beispiel
{
"sessionKey": "",
"location": "",
"quantity": 0.0,
"additionalRequests": [
{
"ProductionFrameDocEntry": 0,
"ProductionFrameDocNum": 0,
"RejectionReasonCode": "",
"RejectionReasonName": "",
"ProducedQuantity": 0.0,
"RejectedQuantity": 0.0,
"CallOffDocNum": 0,
"OrderQuantity": 0.0
}
]
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"BookGoodFeedbackResult": {
"type": "object",
"properties": {
"Message": {
"type": "string"
},
"Code": {
"type": "integer"
},
"Quantity": {
"type": "number"
},
"Data": {
"type": "string"
}
},
"required": [
"Message",
"Code",
"Quantity",
"Data"
]
}
},
"required": [
"BookGoodFeedbackResult"
]
}
Beispiel
{
"BookGoodFeedbackResult": {
"Message": "",
"Code": 0,
"Quantity": 0.0,
"Data": ""
}
}
Post your comment on this topic.