The Request block is a special block that can only be added to actions. The Request block takes request data sent to a deployed action's URL and routes the data through its Headers, Params, and Body output ports. Every new action automatically includes one Request block. The Request block can't be added or deleted.
Headers - Sends the request headers to the deployed action's URL.
Params - Sends the request's query parameters to the deployed action's URL.
Body - Sends the request body to the deployed action's URL. Actions support JSON and form-urlencoded
formats. For example, a form-urlencoded
request body with category=books&id=101&id=102&id=103
would return the following:
{
"category": ["books"],
"id": ["101", "102", "103"]
}
To process headers, parameters, or body data from a request sent to the deployed action's URL, connect one or more blocks to the corresponding output port.
Last modified: 2025/05/27