DeliveryChannel

A managed content delivery channel

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
channelId string Unique identifier for the channel
channelName string Display name of the channel
channelType string Type of channel
domain string Domain associated with the channel
isDomainLocked boolean Whether the domain is locked
isSearchable boolean Whether content is searchable
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-deliverychannel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliveryChannel",
  "title": "DeliveryChannel",
  "type": "object",
  "description": "A managed content delivery channel",
  "properties": {
    "channelId": {
      "type": "string",
      "description": "Unique identifier for the channel"
    },
    "channelName": {
      "type": "string",
      "description": "Display name of the channel"
    },
    "channelType": {
      "type": "string",
      "description": "Type of channel",
      "enum": [
        "ExperienceCloudSite",
        "CustomChannel"
      ]
    },
    "domain": {
      "type": "string",
      "description": "Domain associated with the channel"
    },
    "isDomainLocked": {
      "type": "boolean",
      "description": "Whether the domain is locked"
    },
    "isSearchable": {
      "type": "boolean",
      "description": "Whether content is searchable"
    }
  }
}