salesforce_search_objects
Search for Salesforce standard and custom objects using a name pattern to streamline object identification. Examples: 'Account' retrieves Account, AccountHistory; 'Order' finds WorkOrder, ServiceOrder__c, and more.
Instructions
Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
searchPattern | Yes | Search pattern to find objects (e.g., 'Account Coverage' will find objects like 'AccountCoverage__c') |
Input Schema (JSON Schema)
{
"properties": {
"searchPattern": {
"description": "Search pattern to find objects (e.g., 'Account Coverage' will find objects like 'AccountCoverage__c')",
"type": "string"
}
},
"required": [
"searchPattern"
],
"type": "object"
}