FeedElementPage

Paginated list of feed elements

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
currentPageToken string Token for the current page
currentPageUrl string URL for the current page
elements array Feed elements on this page
isModifiedToken string
isModifiedUrl string
nextPageToken string Token for the next page
nextPageUrl string URL for the next page
updatesToken string
updatesUrl string
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-feedelementpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeedElementPage",
  "title": "FeedElementPage",
  "type": "object",
  "description": "Paginated list of feed elements",
  "properties": {
    "currentPageToken": {
      "type": "string",
      "description": "Token for the current page"
    },
    "currentPageUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL for the current page"
    },
    "elements": {
      "type": "array",
      "description": "Feed elements on this page",
      "items": {
        "$ref": "#/components/schemas/FeedElement"
      }
    },
    "isModifiedToken": {
      "type": "string"
    },
    "isModifiedUrl": {
      "type": "string",
      "format": "uri"
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token for the next page"
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL for the next page"
    },
    "updatesToken": {
      "type": "string"
    },
    "updatesUrl": {
      "type": "string",
      "format": "uri"
    }
  }
}