UpdateCommunityInput

Input for updating an Experience Cloud site

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
description string Updated description for the site
name string Updated name for the site
status string Updated status for the site
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-updatecommunityinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateCommunityInput",
  "title": "UpdateCommunityInput",
  "type": "object",
  "description": "Input for updating an Experience Cloud site",
  "properties": {
    "description": {
      "type": "string",
      "description": "Updated description for the site"
    },
    "name": {
      "type": "string",
      "description": "Updated name for the site"
    },
    "status": {
      "type": "string",
      "description": "Updated status for the site",
      "enum": [
        "Live",
        "Inactive",
        "DownForMaintenance"
      ]
    }
  }
}