run_sosl_search
Execute SOSL searches in Salesforce to retrieve records matching specific criteria. Use this tool to find data across objects and fields with a single query.
Instructions
Executes a SOSL search against Salesforce
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | Yes | The SOSL search to execute (e.g., 'FIND {John Smith} IN ALL FIELDS') |
Input Schema (JSON Schema)
{
"properties": {
"search": {
"description": "The SOSL search to execute (e.g., 'FIND {John Smith} IN ALL FIELDS')",
"type": "string"
}
},
"required": [
"search"
],
"type": "object"
}