Sweep Salesforce change feed API

The Salesforce change feed API from Sweep — 3 operation(s) for salesforce change feed.

Operations 5

GET /sf-change-feed #
POST /sf-change-feed/notifications #
GET /sf-change-feed/notifications #
PUT /sf-change-feed/notifications/{id} #
DELETE /sf-change-feed/notifications/{id} #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/sweep-salesforce-change-feed-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

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

OpenAPI Specification

sweep-salesforce-change-feed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sweep Salesforce change feed API
  description: This is a publicly available Sweep API.
  version: '0.1'
  contact: {}
servers:
- url: https://api.sweep.io
  description: Sweep production API — the host this document was harvested from (GET /api-json); /health responds here
tags:
- name: Salesforce change feed
paths:
  /sf-change-feed:
    get:
      operationId: SalesforceChangeFeedController_getChangeFeed
      parameters:
      - name: sortBy
        required: true
        in: query
        schema:
          type: string
      - name: sortKey
        required: true
        in: query
        schema:
          type: string
      - name: crmOrgs
        required: true
        in: query
        schema:
          type: array
          items:
            type: string
      - name: sfUserNames
        required: true
        in: query
        schema:
          type: array
          items:
            type: string
      - name: sections
        required: true
        in: query
        schema:
          type: array
          items:
            type: string
      - name: startTime
        required: true
        in: query
        schema:
          format: date-time
          type: string
      - name: endTime
        required: true
        in: query
        schema:
          format: date-time
          type: string
      - name: actionText
        required: true
        in: query
        schema:
          type: string
      - name: withFilters
        required: true
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SalesforceChangeFeedDto'
      tags:
      - Salesforce change feed
  /sf-change-feed/notifications:
    post:
      operationId: SalesforceChangeFeedController_addNotification
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSalesforceChangeFeedNotificationDto'
      responses:
        '201':
          description: ''
      tags:
      - Salesforce change feed
    get:
      operationId: SalesforceChangeFeedController_getNotifications
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Salesforce change feed
  /sf-change-feed/notifications/{id}:
    put:
      operationId: SalesforceChangeFeedController_editNotification
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSalesforceChangeFeedNotificationDto'
      responses:
        '200':
          description: ''
      tags:
      - Salesforce change feed
    delete:
      operationId: SalesforceChangeFeedController_deleteNotification
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Salesforce change feed
components:
  schemas:
    SalesforceChangeFeedCriterionDto:
      type: object
      properties:
        criterionId:
          type: string
          minLength: 1
        fieldName:
          type: string
          minLength: 1
        operator:
          type: string
          minLength: 1
        value:
          type: string
          minLength: 1
      required:
      - criterionId
      - fieldName
      - operator
      - value
    UpdateSalesforceChangeFeedNotificationDto:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        criteriaLogic:
          type: string
        crmOrgIds:
          minItems: 1
          type: array
          items:
            type: string
        isActive:
          type: boolean
        criteria:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/SalesforceChangeFeedCriterionDto'
        actions:
          minItems: 1
          type: array
          items:
            type: object
      required:
      - name
      - criteriaLogic
      - crmOrgIds
      - isActive
      - criteria
      - actions
    SalesforceChangeFeedFilterList:
      type: object
      properties:
        sections:
          type: array
          items:
            type: string
        sfUserNames:
          type: array
          items:
            type: string
        crmOrgs:
          type: array
          items:
            type: string
        nameSpaces:
          type: array
          items:
            type: string
      required:
      - sections
      - sfUserNames
      - crmOrgs
      - nameSpaces
    SalesforceChangeFeedItem:
      type: object
      properties:
        sfId:
          type: string
        crmOrgId:
          type: string
        sfUserName:
          type: string
        action:
          type: string
        section:
          type: string
        nameSpace:
          type: string
        timestamp:
          format: date-time
          type: string
      required:
      - sfId
      - crmOrgId
      - sfUserName
      - action
      - section
      - nameSpace
      - timestamp
    SalesforceChangeFeedDto:
      type: object
      properties:
        changeFeedList:
          type: array
          items:
            $ref: '#/components/schemas/SalesforceChangeFeedItem'
        filters:
          $ref: '#/components/schemas/SalesforceChangeFeedFilterList'
      required:
      - changeFeedList
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http