Liefert alle verknüpften Dokumente für einen Platz
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"locationCode": {
"type": "string"
}
},
"required": [
"sessionKey",
"locationCode"
]
}
Beispiel
{
"sessionKey": "",
"locationCode": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"GetProductionOrdersOnLocationResult": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"DocNum": {
"type": "string"
},
"ProcessNumber": {
"type": "string"
},
"Status": {
"type": "integer"
}
},
"required": [
"DocNum",
"ProcessNumber",
"Status"
]
}
]
}
},
"required": [
"GetProductionOrdersOnLocationResult"
]
}
Beispiel
{
"GetProductionOrdersOnLocationResult": [
{
"DocNum": "",
"ProcessNumber": "",
"Status": 0
}
]
}
Hinterlasse einen Kommentar.