Output Node

Output Node plays the role of outputting or sending the final result of the workflow. You can deliver results to various platforms.


๐Ÿ“‹ Output Node List

Node Platform Purpose Auth
INBLOG INBLOG Auto Blog Posting API Key
Slack Slack Team Message Send Bot Token
Telegram Telegram Message/Notif Send Bot Token
Discord Discord Community Message Bot Token
Http Response HTTP API Return API Response None
Chatbot Response Chatbot Return Chatbot Answer None

INBLOG

Writes a post to INBLOG

โœจ Key Features

  • โœ๏ธ Automated Blog Posting
  • ๐Ÿ“… Scheduled Publishing Support
  • ๐ŸŽจ HTML Content Support
  • ๐Ÿ”— Custom URL (slug) Setting

๐Ÿ”ง Required Settings

Setting Description Example
API Key* INBLOG API Key ib_...
slug* Post URL Path my-first-post
title* Post Title First Post made by AI
content_html* Post Content (HTML) {{result}}
published* Immediate Publish true / false

๐Ÿ’ก Usage Example

Auto Blog Posting

[Schedule] โ†’ [News API] โ†’ [ChatGPT] โ†’ [INBLOG]
  1. Collect latest news every morning
  2. AI writes blog post
  3. Automatically publish to INBLOG

INBLOG Node Config:

slug: news-{{DATE}}
title: Today's AI News
content_html: {{result}}
published: true

Slack

Sends a message to Slack

โœจ Key Features

  • ๐Ÿ’ฌ Send message to team channel
  • ๐Ÿ”” Real-time notification
  • ๐ŸŽจ Rich formatting support

๐Ÿ”ง Required Settings

Setting Description Example
bot_token* Slack Bot Token xoxb-...
channel_id* Channel ID C01234ABCDE
text* Message to send {{result}}

๐Ÿ“‹ Prerequisites

  1. Create Slack App

    • Go to Slack API and create App
    • OAuth & Permissions: Grant chat:write, channels:read
    • Issue Bot Token
  2. Check Channel ID

    • Right click Slack Channel โ†’ Channel Details โ†’ Copy ID

๐Ÿ’ก Usage Example

Daily Report Sending

[Schedule] โ†’ [Fetch Data] โ†’ [ChatGPT] โ†’ [Slack]

Telegram

Sends a message to Telegram

โœจ Key Features

  • ๐Ÿ“ฑ Send Private Message
  • ๐Ÿ‘ฅ Group/Channel Message Support
  • ๐ŸŽจ Markdown Format Support

๐Ÿ”ง Required Settings

Setting Description Example
api_key* Telegram Bot Token 123456:ABC-DEF...
chat_id* Chat ID (Private/Group/Channel) 123456789 or @channel
text* Message to send {{result}}

๐Ÿ“‹ Prerequisites

  1. Create Telegram Bot

    • /newbot to @BotFather and get Token
  2. Check Chat ID

    • Send message to bot and check with getUpdates API
    • Or @channelname for public channels

๐Ÿ’ก Usage Example

Stock Price Alert

[Schedule] โ†’ [Stock API] โ†’ [Telegram]

Sending Reply:

chat_id: {{results[0].message.chat_id}}
text: {{result}}

Discord

Sends a message to Discord

โœจ Key Features

  • ๐ŸŽฎ Community Notification
  • ๐Ÿค– Bot Message

๐Ÿ”ง Required Settings

Setting Description Example
bot_token* Discord Bot Token MTk4...
channel_id* Channel ID 987654321
content* Message to send {{result}}

๐Ÿ“‹ Prerequisites

  1. Create Discord Application

    • Create Bot in Developer Portal
    • Invite to server with OAuth2 URL Generator (bot scope)
  2. Check Channel ID

    • Turn on Discord Developer Mode โ†’ Right click Channel โ†’ Copy ID

Http Response

Returns an HTTP Response (For API Endpoint)

โœจ Key Features

  • ๐ŸŒ Returns workflow execution result (last node result) as API response
  • ๐Ÿ“ฑ External System Integration

๐Ÿ”ง Configuration

No extra configuration needed. It sends the result of the immediate previous node in the response.

๐Ÿ“ Response Format

The format returned when calling API is as follows:

{
  "success": true,
  "data": "Result text of the last node",
  "timestamp": "..."
}

Chatbot Response

Returns response for Web Chatbot Widget

โœจ Key Features

  • ๐Ÿ’ฌ Displays text in the chatbot window integrated into the website.
  • โšก Real-time conversation flow implementation

๐Ÿ”ง Configuration

No separate configuration required. The text generated in the previous node is automatically used as the chatbot answer.

๐Ÿ’ก Usage Example

Website Customer Service

[Text Input (For Chatbot)] โ†’ [VectorDB] โ†’ [ChatGPT] โ†’ [Chatbot Response]

Receives user question from the chatbot widget embedded in the website, and shows back the AI's answer.


๐Ÿ†š Which Output to Choose?

Situation Recommended Output Reason
Auto Blog Post INBLOG Direct CMS Integration
Team Alert Slack Business Messenger
Private/Channel Alert Telegram Easy Setup
Gaming Community Discord Gamer Friendly
API Service Http Response Standard REST API
Web Chatbot Chatbot Response Real-time Conversation

๐Ÿ”— Using Multiple Outputs

You can use multiple Output nodes in one workflow.

[AI Generation] โ†’ [Slack]
                โ†’ [Telegram]

Sends the same result to multiple platforms simultaneously.


๐ŸŽฏ Next Steps

results matching ""

    No results matching ""