For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
DeveloperAcademyCommunityStatus
  • Getting Started
    • Welcome to Moveworks
    • Roadmap & Release Notes
    • Moveworks Best Practices
    • Labs
    • Professional Services
    • Support
  • AI Assistant
    • AI Assistant Overview
    • Capabilities
    • Web Experiences
    • Analytics & Performance
  • Enterprise Search
    • Overview
    • Agentic RAG Overview
    • Content Ingestion Platform
    • Profile Boosting
    • Retrieval
    • Permissions Platform
    • Built-in Content Connectors
      • Axero
      • Brainstorm QuickHelp
      • Atlassian Confluence
      • Freshservice
      • GitHub
      • Google Drive
      • Interact
      • LumApps
      • ManageEngine
      • Notion
      • Salesforce
      • ServiceNow
      • Microsoft Sharepoint
      • Slack
      • Staffbase
      • Unily
      • WordPress
      • Workday
    • Build your own Content Connectors
    • Configure Search
    • Configure Enterprise Search
    • Vetted Content
    • Writing AI-Ready KB Articles
    • Document Chunking and Snippetization Overview
  • Productivity Boost
    • Overview
    • Configure Productivity Boost
    • Quick GPT
    • Calendar Management
    • Brief Me
DeveloperAcademyCommunityStatus
On this page
  • Overview
  • Supported Content Types
  • Snippet Titles
  • Snippet Description
  • Article Links
  • Unsupported Behavior: Advanced Content
  • Architecture
  • Knowledge Ingestion
Enterprise SearchBuilt-in Content Connectors

Salesforce

||View as Markdown|
Was this page helpful?
Edit this page
Previous

ServiceNow

Next
Built with

Overview

With the Salesforce content connector, Moveworks Enterprise Search enables the Moveworks AI Assistant to answer user’s questions directly in chat, by understanding the questions and responding instantly with answers containing the most relevant content, links to knowledge base articles or files, or links to external articles taken from trusted knowledge sources.

See our Salesforce Knowledge Access Requirements guide for more information on how to connect Moveworks to your Salesforce Knowledge instance.

Supported Content Types

As part of our Enterprise Cache, Moveworks ingests and snippetizes knowledge articles from your knowledge base to make them chat ready. Moveworks will ingest all articles with PublishStatus = Online (all published articles).

The Moveworks Salesforce Knowledge Integration supports HTML file types.

Snippet Titles

Note that outside of just using your title, Moveworks will also parse the rest of the article content to determine the best title for your article.

1{
2 "Title": "VPN Troubleshooting Guide",
3 "body": "{{SEE RIGHT}}"
4}
1<h1>How to solve connection errors</h1>
2Here are some instructions.
3
4<h1> How to solve VPN slowness </h1>
5Here are some other instructions.

In this example, we will create a knowledge article “snippet” titled “VPN Troubleshooting Guide: How to solve connection errors”

Snippet Description

We typically display directly from the Article_content__c field of your articles. However we’ve seen different a few different formats, please let your Customer Success team know if you store any important information in any different or custom fields.

Condition (Content Type)Field to fetch content from
if Article_content__c is not emptyarticle.Article_content__c
if Article_content___c is empty but Steps__c is notarticle.Steps__c

Article Links

Moveworks generates links to your articles based on the file path.

https://{{base-salesforce-url}}/s/article/{{article.URLName}}

We also have some ability to slightly edit the file path, again your Customer Success team is the best person to work with to ensure your configuration works properly.

Unsupported Behavior: Advanced Content

Please note that images, tables, text formatting, lists or other multi-media formats will not be rendered in chat. Instead, the user will be able to click the article and view the source article.

Architecture

Knowledge Ingestion

We use SOQL on the following APIs to filter content during ingestion

  • Get list of available articles
    https://{{base-salesforce-url}}/services/data/v54.0/query/?q=SELECT {Fields} FROM Knowledge__kav WHERE {Filter_rules}
  • Get individual article: https://{{base-salesforce-url}}/services/data/v54.0/sobjects/Knowledge__kav/article_id