FolderExternalLinksResponse Data Type

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

Properties
name data type description
pages array of PageExternalLink Get pages
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

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