Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud Site Provision and Publish

Version 1.0.0

Create an Experience Cloud site, read it back, then publish it.

1 workflow 1 source API 1 provider
View Spec View on GitHub CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner PortalArazzoWorkflows

Provider

salesforce-experience-cloud

Workflows

site-provision-publish
Provision a new Experience Cloud site and publish it.
Creates a site from a template, reads it back to confirm its details, and publishes it.
3 steps inputs: accessToken, description, name, templateName, urlPathPrefix outputs: communityId, publishStatus, siteUrl
1
createSite
createExperienceCloudSite
Create a new Experience Cloud site from the supplied template and prefix.
2
getSite
getExperienceCloudSite
Read the new site back to confirm its name, status, and URL.
3
publishSite
publishExperienceCloudSite
Publish the site to make its initial configuration live.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud Site Provision and Publish
  summary: Create an Experience Cloud site, read it back, then publish it.
  description: >-
    An end-to-end site provisioning flow. The workflow creates a new Experience
    Cloud site from a template and URL path prefix, retrieves the created site
    to confirm its details, then publishes the site to make its initial
    configuration live. Each step spells out its request inline so the flow can
    be read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: sitesApi
  url: ../openapi/salesforce-experience-cloud-sites-openapi.yml
  type: openapi
workflows:
- workflowId: site-provision-publish
  summary: Provision a new Experience Cloud site and publish it.
  description: >-
    Creates a site from a template, reads it back to confirm its details, and
    publishes it.
  inputs:
    type: object
    required:
    - accessToken
    - name
    - templateName
    - urlPathPrefix
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for the Salesforce instance.
      name:
        type: string
        description: Name for the new Experience Cloud site.
      templateName:
        type: string
        description: Template to base the site on (e.g. Customer Service).
      urlPathPrefix:
        type: string
        description: URL path prefix for the site.
      description:
        type: string
        description: Description for the new site.
  steps:
  - stepId: createSite
    description: Create a new Experience Cloud site from the supplied template and prefix.
    operationId: createExperienceCloudSite
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        templateName: $inputs.templateName
        urlPathPrefix: $inputs.urlPathPrefix
        description: $inputs.description
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      communityId: $response.body#/id
  - stepId: getSite
    description: Read the new site back to confirm its name, status, and URL.
    operationId: getExperienceCloudSite
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $steps.createSite.outputs.communityId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      siteUrl: $response.body#/siteUrl
  - stepId: publishSite
    description: Publish the site to make its initial configuration live.
    operationId: publishExperienceCloudSite
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $steps.createSite.outputs.communityId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      publishStatus: $response.body#/status
  outputs:
    communityId: $steps.createSite.outputs.communityId
    siteUrl: $steps.getSite.outputs.siteUrl
    publishStatus: $steps.publishSite.outputs.publishStatus

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/salesforce-experience-cloud-site-provision-publish-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.