Files
showbridge-docs/src/content/docs/processors/nats/message/create.md
T
2026-03-26 17:57:08 -05:00

536 B

title, sidebar
title sidebar
Create NATS Message
label order
Create 1

This processor will create a NATS message from the provided parameters. This processor will return an error if any of the required parameters are missing or if the parameters are of the wrong type.

  • type: nats.message.create
  • params:
    • subject: the subject to publish the message to.
    • payload: the payload of the message.

Example

- type: nats.message.create
  params:
    subject: "events"
    payload: "Hello, World!"