Merge · Schema

AsyncBulkCreateResponse

Response serializer for POST bulk create - returns only batch_id

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
batch_id string The ID of the batch.
View JSON Schema on GitHub

JSON Schema

merge-asyncbulkcreateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AsyncBulkCreateResponse",
  "title": "AsyncBulkCreateResponse",
  "type": "object",
  "properties": {
    "batch_id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the batch."
    }
  },
  "required": [
    "batch_id"
  ],
  "description": "Response serializer for POST bulk create - returns only batch_id"
}