batch
Execute multiple Salesforce operations in one call with result references, enabling sequential workflows and error handling with bail or continue options.
Instructions
Execute multiple operations in a single call with result references. Use $N.field to reference prior results (e.g., $0.id for the ID from operation 0). Destructive operations require confirm: true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operations | Yes | List of operations to execute sequentially (max 16) | |
| onError | No | Error handling: bail (default) stops on first failure, continue executes remaining | |
| detail | No | Response detail level (default: summary) |