honeycomb_batch_event_create
Create multiple events in a specified dataset simultaneously using a single batch operation, streamlining data ingestion and reducing processing time.
Instructions
Create multiple events in a dataset in a single batch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug to create events in | |
events | Yes | Array of event data to send |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug to create events in",
"type": "string"
},
"events": {
"description": "Array of event data to send",
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"datasetSlug",
"events"
],
"type": "object"
}