Workato · JSON Structure

Workato Event Streams Batch Publish Response Structure

Results of a batch publish operation.

Type: object Properties: 2
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

BatchPublishResponse is a JSON Structure definition published by Workato, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

is_partial_error message_ids

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-structure/workato-event-streams-batch-publish-response-structure.json",
  "name": "BatchPublishResponse",
  "description": "Results of a batch publish operation.",
  "type": "object",
  "properties": {
    "is_partial_error": {
      "type": "boolean",
      "description": "Whether some messages in the batch failed to publish. If true, check individual message results for failures."
    },
    "message_ids": {
      "type": "object",
      "description": "Map of array index (as string) to individual publish result. Keys correspond to positions in the submitted payloads array.",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "message_id": {
            "type": "string",
            "description": "Unique identifier assigned to the published message."
          },
          "result": {
            "type": "string",
            "description": "Result status for this individual message."
          }
        }
      }
    }
  }
}