Verknüpfung von mehreren MHU mit VDA-Label

POST

Payload

Schema

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "sessionKey": {
      "type": "string"
    },
    "mhuList": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "Mhu": {
              "type": "string"
            },
            "Vda": {
              "type": "string"
            }
          },
          "required": [
            "Mhu",
            "Vda"
          ]
        }
      ]
    }
  },
  "required": [
    "sessionKey",
    "mhuList"
  ]
}

Beispiel

{
  "sessionKey": "",
  "mhuList": [
    {
      "Mhu": "",
      "Vda": ""
    }
  ]
}

Rückgabe

Schema

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "LinkMHUListResult": {
      "type": "object",
      "properties": {
        "LinkMHUListResult": {
          "type": "boolean"
        },
        "Errors": {
          "type": "array",
          "items": [
            {
              "type": "object",
              "properties": {
                "Message": {
                  "type": "string"
                },
                "Code": {
                  "type": "integer"
                },
                "Quantity": {
                  "type": "number"
                },
                "Data": {
                  "type": "string"
                }
              },
              "required": [
                "Message",
                "Code",
                "Quantity",
                "Data"
              ]
            }
          ]
        }
      },
      "required": [
        "LinkMHUListResult",
        "Errors"
      ]
    }
  },
  "required": [
    "LinkMHUListResult"
  ]
}

Beispiel

{
  "LinkMHUListResult": {
    "LinkMHUListResult": false,
    "Errors": [
      {
        "Message": "",
        "Code": 0,
        "Quantity": 0.0,
        "Data": ""
      }
    ]
  }
}

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Please do not use this for support questions.
Kunden-Support

Post Comment