Node reference

Response nodes

A response node is where the workflow answers. Flux ships ten, and the rule is simple: match the response to the trigger the conversation came in on.

All ten

ResponseSends toUse with
ChatThe generated chat UIUI trigger
WebhookBack to whoever called the endpointAPI trigger
WhatsAppThe WhatsApp conversationWhatsApp trigger
WhatsApp BroadcastMany WhatsApp recipients at onceInterval or spreadsheet trigger
ViberThe Viber conversationViber trigger
TelegramThe Telegram conversationTelegram trigger
FacebookThe Facebook conversationFacebook trigger
InstagramThe Instagram conversationInstagram trigger
Outbound ChatBack into CognifyInbound Chat trigger
Outbound Chat (Generic)Back into any system you wired upInbound Chat (Generic) trigger
A mismatched pair is the most common reason a bot "does not reply". The workflow runs fine and the logs look healthy — the answer simply went somewhere the customer is not looking.
Several channels, one brain — each with its own response node.

What goes in a response

The message is built with template expressions, usually pulling the AI node's answer:

{{POUT response}}

You can mix static text and expressions freely, which is how you add a signature, a disclaimer or a reference number the model did not produce.

Chat response

Answers in the interface the UI trigger generates. The right one for testing and for an internal tool where you do not need a public channel.

Webhook response

Returns data to whatever called the API trigger, which is what makes a workflow usable as a service. Shape the body deliberately — the caller is a program, not a person, so return a stable structure rather than prose. See Web and API channels.

The messaging responses

WhatsApp, Viber, Telegram, Facebook and Instagram each send back on their own channel, using the credential you stored when connecting it. Setup is covered in Messaging channels.

WhatsApp Broadcast

The one response node that is not a reply. Instead of answering one conversation it sends to many recipients, which makes it the outbound counterpart to the others.

Pair it with a spreadsheet trigger to message a list, or an interval trigger for a recurring send.

Broadcast messaging is governed by WhatsApp's own template and opt-in rules, and by messaging law in your recipients' countries. Send only to people who agreed to hear from you — the penalty for getting this wrong is losing the number.

Outbound Chat, and its generic twin

Outbound Chat

Sends the answer back into Cognify, onto the record the conversation belongs to.

Outbound Chat (Generic)

Sends it back to whatever system you connected, when Flux is running behind something other than Cognify.

More than one response

A workflow can hold several response nodes — one per branch of a Decision, or one per channel. Only the ones on the executed path actually send.