Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud CMS Content Revise and Republish

Version 1.0.0

Update an existing CMS content item, then republish it to channels.

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

Provider

salesforce-experience-cloud

Workflows

cms-content-revise-republish
Revise an existing CMS content item and republish it.
Reads a content item, updates its title and body, and republishes it to the supplied delivery channels.
3 steps inputs: accessToken, channelIds, contentBody, contentId, contentType, title outputs: contentId, managedContentId
1
getContent
Read the content item to confirm it exists before revising.
2
updateContent
Apply the revised title and body to the content item.
3
republishContent
Republish the revised content item to the supplied delivery channels.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud CMS Content Revise and Republish
  summary: Update an existing CMS content item, then republish it to channels.
  description: >-
    A content maintenance flow for Experience Cloud. The workflow reads an
    existing CMS content item to confirm it exists, applies revised title and
    body fields, then republishes the item to its delivery channels so the
    changes go 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
  x-realizes-capability-ids:
  - BC-400.70
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-400.70
      capability_name: Content Marketing Management
      spec: salesforce-experience-cloud-content-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: contentApi
  url: ../openapi/salesforce-experience-cloud-content-api-openapi.yml
  type: openapi
workflows:
- workflowId: cms-content-revise-republish
  summary: Revise an existing CMS content item and republish it.
  description: >-
    Reads a content item, updates its title and body, and republishes it to the
    supplied delivery channels.
  inputs:
    type: object
    required:
    - accessToken
    - contentId
    - title
    - contentType
    - channelIds
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for the Salesforce instance.
      contentId:
        type: string
        description: ID of the CMS content item to revise.
      title:
        type: string
        description: Updated title for the content item.
      contentType:
        type: string
        description: Developer name of the content type.
      contentBody:
        type: object
        description: Updated content body fields as defined by the content type.
      channelIds:
        type: array
        description: Channel IDs to republish the content to.
        items:
          type: string
  steps:
  - stepId: getContent
    description: Read the content item to confirm it exists before revising.
    operationId: getCmsContent
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: contentId
      in: path
      value: $inputs.contentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentStatus: $response.body#/status
  - stepId: updateContent
    description: Apply the revised title and body to the content item.
    operationId: updateCmsContent
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: contentId
      in: path
      value: $inputs.contentId
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        contentType: $inputs.contentType
        contentBody: $inputs.contentBody
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      managedContentId: $response.body#/managedContentId
  - stepId: republishContent
    description: Republish the revised content item to the supplied delivery channels.
    operationId: publishCmsContent
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: contentId
      in: path
      value: $inputs.contentId
    requestBody:
      contentType: application/json
      payload:
        channelIds: $inputs.channelIds
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contentId: $inputs.contentId
  outputs:
    contentId: $inputs.contentId
    managedContentId: $steps.updateContent.outputs.managedContentId

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-cms-content-revise-republish-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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