fill in basic details for remaining processors/modules

This commit is contained in:
Joel Wetzell
2026-03-26 17:57:08 -05:00
parent 3a92370cdd
commit cc77a35377
30 changed files with 336 additions and 66 deletions
@@ -5,7 +5,16 @@ sidebar:
order: 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**
- **payload**
- **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!"
```