Liefert Informationen über Gebinde-MHU
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"glt": {
"type": "string"
}
},
"required": [
"sessionKey",
"glt"
]
}
Beispiel
{
"sessionKey": "",
"glt": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"IsGLTResult": {
"type": "object",
"properties": {
"ContainedQuantity": {
"type": "number"
},
"MaximalQuantity": {
"type": "number"
}
},
"required": [
"ContainedQuantity",
"MaximalQuantity"
]
}
},
"required": [
"IsGLTResult"
]
}
Beispiel
{
"IsGLTResult": {
"ContainedQuantity": 0.0,
"MaximalQuantity": 0.0
}
}
Post your comment on this topic.