BulkCreateRecords
Create multiple database records in one operation to efficiently handle batch data insertion and maintain data consistency.
Instructions
Create multiple records in a single operation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Array of record data to insert | |
| label | Yes | Label for all records | |
| transactionId | No | Optional transaction ID for atomic bulk creation |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Array of record data to insert",
"items": {
"type": "object"
},
"type": "array"
},
"label": {
"description": "Label for all records",
"type": "string"
},
"transactionId": {
"description": "Optional transaction ID for atomic bulk creation",
"type": "string"
}
},
"required": [
"label",
"data"
],
"type": "object"
}