BulkCreateRecords
Insert multiple records into a specified collection in Astra DB databases using this tool. Streamline data management with a single API call, supporting efficient bulk operations.
Instructions
Create multiple records in a collection at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionName | Yes | Name of the collection to create the records in | |
records | Yes | Array of records to insert |
Input Schema (JSON Schema)
{
"properties": {
"collectionName": {
"description": "Name of the collection to create the records in",
"type": "string"
},
"records": {
"description": "Array of records to insert",
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"collectionName",
"records"
],
"type": "object"
}