bulk_create_records
Create multiple records in one table with a single API call. Supports rollback on failure and dry-run preview.
Instructions
Create many records in one table in a single call, tracking every created sys_id and returning a rollback_token. With rollback_on_error=true, a mid-way failure deletes everything already created so the batch is all-or-nothing. Supports dry_run. Requires WRITE_ENABLED=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | Target table | |
| dry_run | No | Preview the resolved payloads without creating anything | |
| records | Yes | Array of field key-value objects to create | |
| rollback_on_error | No | If a create fails, delete the ones already created (default false) |