@elastic/sfdc_find_account
Find Salesforce accounts by name, domain, or ID
RUN SKILL sfdc_find_account()With parameters:
RUN SKILL sfdc_find_account WITH query = 'value', limit = 0| Name | Type | Default | Description |
|---|---|---|---|
| query | STRING | — | Search query - account name, domain, or Salesforce ID |
| 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_account()"}'
-- Response
{
"result": [...],
"_meta": {
"execution_id": "abc123",
"duration_ms": 45
}
}