Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud Feed Post and Like

Version 1.0.0

Post a feed element to a community and like it on behalf of the user.

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

Provider

salesforce-experience-cloud

Workflows

feed-post-like
Post a feed element and like it.
Creates a feed element on a community feed and adds a like to it on behalf of the context user.
2 steps inputs: accessToken, communityId, postText, subjectId outputs: feedElementId, likeId
1
postFeedElement
Create a text feed element on the community news feed.
2
likeFeedElement
Add a like to the new feed element on behalf of the context user.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud Feed Post and Like
  summary: Post a feed element to a community and like it on behalf of the user.
  description: >-
    A lightweight engagement flow that publishes a feed element to an Experience
    Cloud site and then registers a like against it for the context user,
    confirming the like was recorded. 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: feedsApi
  url: ../openapi/salesforce-experience-cloud-feeds-api-openapi.yml
  type: openapi
workflows:
- workflowId: feed-post-like
  summary: Post a feed element and like it.
  description: >-
    Creates a feed element on a community feed and adds a like to it on behalf
    of the context user.
  inputs:
    type: object
    required:
    - accessToken
    - communityId
    - subjectId
    - postText
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for the Salesforce instance.
      communityId:
        type: string
        description: ID of the Experience Cloud site (community).
      subjectId:
        type: string
        description: ID of the parent record the post is attached to.
      postText:
        type: string
        description: Text body for the feed element.
  steps:
  - stepId: postFeedElement
    description: Create a text feed element on the community news feed.
    operationId: postFeedElement
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $inputs.communityId
    requestBody:
      contentType: application/json
      payload:
        feedElementType: FeedItem
        subjectId: $inputs.subjectId
        body:
          messageSegments:
          - type: Text
            text: $inputs.postText
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      feedElementId: $response.body#/id
  - stepId: likeFeedElement
    description: Add a like to the new feed element on behalf of the context user.
    operationId: likeFeedElement
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $inputs.communityId
    - name: feedElementId
      in: path
      value: $steps.postFeedElement.outputs.feedElementId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      likeId: $response.body#/id
  outputs:
    feedElementId: $steps.postFeedElement.outputs.feedElementId
    likeId: $steps.likeFeedElement.outputs.likeId

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-feed-post-like-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.