docs: add HTTP Request note for PostBin content visibility #3145
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR enhances the Step five: Output data from your workflow section of the First Workflow tutorial by adding an informational note to help users actually see their custom body content on PostBin. Because the built‑in PostBin node only displays request headers, the new note shows how to use an HTTP Request node (Method
POST
, Send Body enabled, Body Content Type JSON) with the correct expression so that the message appears in the PostBin UI—all without removing any of the original tutorial steps.Background
Addresses issue #11836: the PostBin node’s Send a request operation issues a GET request and omits the body, preventing users from seeing their message.
Multiple users have reported being unable to complete the Quick Start “longer introduction” tutorial because of this behavior.
Changes
note | PostBin content visibility
block immediately after the numbered steps in Step five, explaining:POST
, URLhttps://www.postb.in/<YOUR_BIN_ID>
, enable Send Body, set Body Content Type to JSON, choose Using JSON under Specify Body).