CreateCommunityInput

Input for creating a new Experience Cloud site

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
description string Description for the new site
name string Name for the new site
templateName string Template to use for the site
urlPathPrefix string URL path prefix for the site
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-createcommunityinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCommunityInput",
  "title": "CreateCommunityInput",
  "type": "object",
  "description": "Input for creating a new Experience Cloud site",
  "required": [
    "name",
    "templateName",
    "urlPathPrefix"
  ],
  "properties": {
    "description": {
      "type": "string",
      "description": "Description for the new site"
    },
    "name": {
      "type": "string",
      "description": "Name for the new site"
    },
    "templateName": {
      "type": "string",
      "description": "Template to use for the site"
    },
    "urlPathPrefix": {
      "type": "string",
      "description": "URL path prefix for the site"
    }
  }
}