Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud UI API Record Lifecycle

Version 1.0.0

Create, read, and update a record through the User Interface API.

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

Provider

salesforce-experience-cloud

Workflows

ui-record-lifecycle
Drive a record through create, read, and update using the UI API.
Creates a record with apiName and fields, reads it back with formatted values, and updates it, capturing the updated representation.
3 steps inputs: accessToken, apiName, createFields, readFields, updateFields outputs: lastModifiedDate, recordId
1
createRecord
Create a record of the given apiName with the supplied field values.
2
getRecord
Read the new record back with the requested fields and display values.
3
updateRecord
Update the record with new field values and capture the updated representation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud UI API Record Lifecycle
  summary: Create, read, and update a record through the User Interface API.
  description: >-
    The metadata-driven record pattern used by Lightning web components in
    Experience Cloud sites. The workflow creates a record via the UI API, reads
    it back with display-formatted values, then updates it and confirms the new
    values in the returned representation. 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: recordsApi
  url: ../openapi/salesforce-experience-cloud-records-api-openapi.yml
  type: openapi
workflows:
- workflowId: ui-record-lifecycle
  summary: Drive a record through create, read, and update using the UI API.
  description: >-
    Creates a record with apiName and fields, reads it back with formatted
    values, and updates it, capturing the updated representation.
  inputs:
    type: object
    required:
    - accessToken
    - apiName
    - createFields
    - updateFields
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for the Salesforce instance.
      apiName:
        type: string
        description: API name of the sObject type for the new record.
      createFields:
        type: object
        description: Map of field API names to values for the new record.
      updateFields:
        type: object
        description: Map of field API names to values to apply on update.
      readFields:
        type: string
        description: Comma-separated field API names to return when reading the record.
  steps:
  - stepId: createRecord
    description: Create a record of the given apiName with the supplied field values.
    operationId: createRecord
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    requestBody:
      contentType: application/json
      payload:
        apiName: $inputs.apiName
        fields: $inputs.createFields
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      recordId: $response.body#/id
  - stepId: getRecord
    description: Read the new record back with the requested fields and display values.
    operationId: getRecord
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: recordId
      in: path
      value: $steps.createRecord.outputs.recordId
    - name: fields
      in: query
      value: $inputs.readFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      eTag: $response.body#/eTag
      apiName: $response.body#/apiName
  - stepId: updateRecord
    description: Update the record with new field values and capture the updated representation.
    operationId: updateRecord
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: recordId
      in: path
      value: $steps.createRecord.outputs.recordId
    requestBody:
      contentType: application/json
      payload:
        apiName: $inputs.apiName
        fields: $inputs.updateFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      lastModifiedDate: $response.body#/lastModifiedDate
  outputs:
    recordId: $steps.createRecord.outputs.recordId
    lastModifiedDate: $steps.updateRecord.outputs.lastModifiedDate

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-ui-record-lifecycle-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.