MultiTagCreateResponse Data Type

Response containing data about the created tags

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

Example

{
  "created" : {
    "property1" : {
      "tag" : {
        "id" : 12345,
        "name" : "...",
        "constructId" : 12345,
        "construct" : { },
        "active" : true,
        "properties" : {
          "property1" : { },
          "property2" : { }
        },
        "type" : "OBJECTTAG",
        "rootTag" : true,
        "inherited" : true
      },
      "html" : "..."
    },
    "property2" : {
      "tag" : {
        "id" : 12345,
        "name" : "...",
        "constructId" : 12345,
        "construct" : { },
        "active" : true,
        "properties" : {
          "property1" : { },
          "property2" : { }
        },
        "type" : "TEMPLATETAG",
        "rootTag" : true,
        "inherited" : true
      },
      "html" : "..."
    }
  },
  "messages" : [ { }, { } ],
  "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" : "..."
  },
  "inBackground" : true
}