UpdateExternalLinkStatusRequest Data Type

Request to update the status of external links in a page

Properties
name data type description
items array of ExternalLink External links for which the status shall be updated

Example

{
  "items" : [ {
    "id" : 12345,
    "contentId" : 12345,
    "contenttagId" : 12345,
    "contenttagName" : "...",
    "valueId" : 12345,
    "partName" : "...",
    "url" : "...",
    "text" : "...",
    "lastCheckTimestamp" : 12345,
    "lastStatus" : "invalid",
    "lastReason" : "...",
    "history" : [ {
      "timestamp" : 12345,
      "status" : "valid",
      "reason" : "..."
    }, {
      "timestamp" : 12345,
      "status" : "unchecked",
      "reason" : "..."
    } ]
  }, {
    "id" : 12345,
    "contentId" : 12345,
    "contenttagId" : 12345,
    "contenttagName" : "...",
    "valueId" : 12345,
    "partName" : "...",
    "url" : "...",
    "text" : "...",
    "lastCheckTimestamp" : 12345,
    "lastStatus" : "unchecked",
    "lastReason" : "...",
    "history" : [ {
      "timestamp" : 12345,
      "status" : "invalid",
      "reason" : "..."
    }, {
      "timestamp" : 12345,
      "status" : "valid",
      "reason" : "..."
    } ]
  } ]
}