Salesforce Experience Cloud · Arazzo Workflow

Salesforce Experience Cloud Member Reputation Lookup

Version 1.0.0

Identify the current community user, search members, and read a member's reputation.

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

Provider

salesforce-experience-cloud

Workflows

member-reputation-lookup
Search community members and read the first match's reputation.
Reads the current user, searches members by name, and retrieves the reputation of the first matched member.
3 steps inputs: accessToken, communityId, memberQuery outputs: currentUserId, matchedUserId, reputation
1
getCurrentUser
Confirm the context user in the Experience Cloud site.
2
searchMembers
Search the site's members by name and capture the first matched user ID.
3
getReputation
Read the reputation score and level for the first matched member.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salesforce Experience Cloud Member Reputation Lookup
  summary: Identify the current community user, search members, and read a member's reputation.
  description: >-
    A community engagement flow on the Connect REST API. The workflow confirms
    the context user in an Experience Cloud site, searches the site's members by
    name, then reads the reputation score and level for the first matched
    member. 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: membersApi
  url: ../openapi/salesforce-experience-cloud-members-api-openapi.yml
  type: openapi
workflows:
- workflowId: member-reputation-lookup
  summary: Search community members and read the first match's reputation.
  description: >-
    Reads the current user, searches members by name, and retrieves the
    reputation of the first matched member.
  inputs:
    type: object
    required:
    - accessToken
    - communityId
    - memberQuery
    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).
      memberQuery:
        type: string
        description: Search term to filter members by name.
  steps:
  - stepId: getCurrentUser
    description: Confirm the context user in the Experience Cloud site.
    operationId: getCurrentUser
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $inputs.communityId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentUserId: $response.body#/id
  - stepId: searchMembers
    description: Search the site's members by name and capture the first matched user ID.
    operationId: getCommunityMembers
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $inputs.communityId
    - name: q
      in: query
      value: $inputs.memberQuery
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedUserId: $response.body#/users/0/id
  - stepId: getReputation
    description: Read the reputation score and level for the first matched member.
    operationId: getUserReputation
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: communityId
      in: path
      value: $inputs.communityId
    - name: userId
      in: path
      value: $steps.searchMembers.outputs.matchedUserId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reputation: $response.body
  outputs:
    currentUserId: $steps.getCurrentUser.outputs.currentUserId
    matchedUserId: $steps.searchMembers.outputs.matchedUserId
    reputation: $steps.getReputation.outputs.reputation

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-member-reputation-lookup-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.