@elastic/sfdc_find_case
Find Salesforce cases by case number, subject, account, or ID
RUN SKILL sfdc_find_case()With parameters:
RUN SKILL sfdc_find_case WITH query = 'value', status = 'value', priority = 'value', limit = 0| Name | Type | Default | Description |
|---|---|---|---|
| query | STRING | — | Search query - case number, subject keywords, account name, or Salesforce ID |
| status | STRING | — | Filter by status (e.g., |
| priority | STRING | — | Filter by priority (e.g., |
| limit | INT | — |
-- Using curl
curl -u elastic-admin:elastic-password http://localhost:9200/_escript \
-H "Content-Type: application/json" \
-d '{"query": "RUN SKILL sfdc_find_case()"}'
-- Response
{
"result": [...],
"_meta": {
"execution_id": "abc123",
"duration_ms": 45
}
}