run_sosl_search
Execute SOSL searches on Salesforce to retrieve records matching specific criteria across all fields, enabling targeted data retrieval for analysis and processing.
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"
}