REST Model for an external Link
name | data type | description |
---|---|---|
id | number | ID |
contentId | number | ID of the content containing the external link |
contenttagId | number | ID of the contenttag containing the external link |
contenttagName | string | Name of the contenttag |
valueId | number | ID of the value containing the external link |
partName | string | Name of the part |
url | string | URL of the external link |
text | string | Link text |
lastCheckTimestamp | number | Timestamp of the last validity check (0 if never checked) |
lastStatus | ExternalLinkStatus | Last check status |
lastReason | string | Last failure reason |
history | array of ExternalLinkCheckHistoryEntry | History of last 5 validity checks |
Example
{ "id" : 12345, "contentId" : 12345, "contenttagId" : 12345, "contenttagName" : "...", "valueId" : 12345, "partName" : "...", "url" : "...", "text" : "...", "lastCheckTimestamp" : 12345, "lastStatus" : "valid", "lastReason" : "...", "history" : [ { "timestamp" : 12345, "status" : "unchecked", "reason" : "..." }, { "timestamp" : 12345, "status" : "valid", "reason" : "..." } ] }