Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud Object List View Exploration

Version 1.0.0

Read object metadata, find its list views, and load the first list view's data.

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

Provider

salesforce-experience-cloud

Workflows

object-listview-explore
Resolve an object's list views and load the first one's data.
Reads object info, lists the object's list views, and loads the first list view's records and metadata.
3 steps inputs: accessToken, objectApiName, pageSize outputs: defaultRecordTypeId, firstListViewId
1
getObjectInfo
Read object metadata to confirm the object and capture its default record type.
2
getListViews
List the available list views for the object and capture the first list view ID.
3
getListViewData
Load records and metadata for the first list view of the object.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud Object List View Exploration
  summary: Read object metadata, find its list views, and load the first list view's data.
  description: >-
    A metadata-driven discovery flow for building Experience Cloud list pages.
    The workflow fetches object metadata to confirm the object is queryable,
    retrieves the list views available for that object, then loads the records
    and columns for the first list view. 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: listViewsApi
  url: ../openapi/salesforce-experience-cloud-list-views-api-openapi.yml
  type: openapi
- name: objectInfoApi
  url: ../openapi/salesforce-experience-cloud-object-info-api-openapi.yml
  type: openapi
workflows:
- workflowId: object-listview-explore
  summary: Resolve an object's list views and load the first one's data.
  description: >-
    Reads object info, lists the object's list views, and loads the first list
    view's records and metadata.
  inputs:
    type: object
    required:
    - accessToken
    - objectApiName
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token for the Salesforce instance.
      objectApiName:
        type: string
        description: API name of the object to explore (e.g. Account).
      pageSize:
        type: integer
        description: Number of records to load for the list view.
  steps:
  - stepId: getObjectInfo
    description: Read object metadata to confirm the object and capture its default record type.
    operationId: getObjectInfo
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: objectApiName
      in: path
      value: $inputs.objectApiName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      defaultRecordTypeId: $response.body#/defaultRecordTypeId
  - stepId: getListViews
    description: List the available list views for the object and capture the first list view ID.
    operationId: getListViewsByObject
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: objectApiName
      in: path
      value: $inputs.objectApiName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstListViewId: $response.body#/lists/0/id
  - stepId: getListViewData
    description: Load records and metadata for the first list view of the object.
    operationId: getListViewData
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: listViewId
      in: path
      value: $steps.getListViews.outputs.firstListViewId
    - name: pageSize
      in: query
      value: $inputs.pageSize
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      listViewId: $steps.getListViews.outputs.firstListViewId
  outputs:
    defaultRecordTypeId: $steps.getObjectInfo.outputs.defaultRecordTypeId
    firstListViewId: $steps.getListViews.outputs.firstListViewId

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-object-listview-explore-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.