Boomi · Schema

PublishResponse

Response returned after successfully publishing messages.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
status string Status of the publish operation.
messageIds string Comma-separated list of message IDs assigned to the published messages.
View JSON Schema on GitHub

JSON Schema

boomi-publishresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublishResponse",
  "title": "PublishResponse",
  "type": "object",
  "description": "Response returned after successfully publishing messages.",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of the publish operation.",
      "example": "success"
    },
    "messageIds": {
      "type": "string",
      "description": "Comma-separated list of message IDs assigned to the published messages."
    }
  }
}