Verknüpft VDA-Label mit MHU
POST
Payload
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"sessionKey": {
"type": "string"
},
"vdalabel": {
"type": "string"
},
"mhucode": {
"type": "string"
}
},
"required": [
"sessionKey",
"vdalabel",
"mhucode"
]
}
Beispiel
{
"sessionKey": "",
"vdalabel": "",
"mhucode": ""
}
Rückgabe
Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"LinkToMHUResult": {
"type": "object",
"properties": {
"Message": {
"type": "string"
},
"Code": {
"type": "integer"
},
"Quantity": {
"type": "number"
},
"Data": {
"type": "string"
}
},
"required": [
"Message",
"Code",
"Quantity",
"Data"
]
}
},
"required": [
"LinkToMHUResult"
]
}
Beispiel
{
"LinkToMHUResult": {
"Message": "",
"Code": 0,
"Quantity": 0.0,
"Data": ""
}
}
Post your comment on this topic.