UserPage

Paginated list of community users

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
currentPageToken string
currentPageUrl string
nextPageToken string
nextPageUrl string
users array
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-userpage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserPage",
  "title": "UserPage",
  "type": "object",
  "description": "Paginated list of community users",
  "properties": {
    "currentPageToken": {
      "type": "string"
    },
    "currentPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "nextPageToken": {
      "type": "string"
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CommunityUser"
      }
    }
  }
}