FolderExternalLinksResponse Data Type

REST Model external links response. It contains the pages with external links.

Properties
name data type constraints description
pages array of PageExternalLink   Get pages
messages array of Message   Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo  
inBackground boolean required boolean Whether the job was pushed into the background.

Example

{
  "pages" : [ {
    "pageId" : 12345,
    "pageName" : "...",
    "links" : [ "...", "..." ]
  }, {
    "pageId" : 12345,
    "pageName" : "...",
    "links" : [ "...", "..." ]
  } ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "inBackground" : true
}