MultiTagCreateResponse Data Type

Response containing data about the created tags

Properties
name data type description
messages array of Message Messages contained in the response (which should be shown to the user)
created map of CreatedTag Map of created tags. Keys are the IDs (from the request), values are objects containing tag data
tags array of Tag Tag data of the created tags
responseInfo ResponseInfo

Example

{
  "messages" : [ { }, { } ],
  "created" : {
    "property1" : {
      "tag" : {
        "id" : 12345,
        "name" : "...",
        "constructId" : 12345,
        "construct" : { },
        "active" : true,
        "properties" : {
          "property1" : { },
          "property2" : { }
        },
        "type" : "TEMPLATETAG"
      },
      "html" : "..."
    },
    "property2" : {
      "tag" : {
        "id" : 12345,
        "name" : "...",
        "constructId" : 12345,
        "construct" : { },
        "active" : true,
        "properties" : {
          "property1" : { },
          "property2" : { }
        },
        "type" : "OBJECTTAG"
      },
      "html" : "..."
    }
  },
  "tags" : [ {
    "element" : "...",
    "tagname" : "...",
    "onlyeditables" : true,
    "editables" : [ {
      "element" : "...",
      "partname" : "...",
      "readonly" : true
    }, {
      "element" : "...",
      "partname" : "...",
      "readonly" : true
    } ]
  }, {
    "element" : "...",
    "tagname" : "...",
    "onlyeditables" : true,
    "editables" : [ {
      "element" : "...",
      "partname" : "...",
      "readonly" : true
    }, {
      "element" : "...",
      "partname" : "...",
      "readonly" : true
    } ]
  } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}