Skip to main content

web

Overview

Any web requests handler

Blocks

Events

Got Response

Response for get request

loading block...

variabletypedescription
responseAnyReturns fetched data from URL

On error

On web request throw error

loading block...

variabletypedescription
statusAnyThe status of the request
statusTextAnyThe status text of the request
responseTypeAnyThe response type of the request
urlAnyThe URL of the request

Post Response

Response for post request

loading block...

variabletypedescription
statusAnyStatus code for post request
responseAnyResponse for post request
urlAnyRequest URL post request

Put Response

Response for put request

loading block...

variabletypedescription
responseAnyPut request response

Put onchange

On change response for put request

loading block...

variabletypedescription
responseAnyPut request on change response

Delete Response

Response for delete request

loading block...

variabletypedescription
responseAnyReturns fetched data from URL

Patch Response

Triggered when a PATCH request is successful

loading block...

variabletypedescription
responseAnyResponse from the PATCH request

Methods

Get

Web get request

loading block...

Input ParamsTypeDescription
URLAnyLink to fetch data

Post

Web post request

loading block...

Input ParamsTypeDescription
URLStringURL to fetch using post request
DataStringParameters for post request

PUT

Web put request

loading block...

Input ParamsTypeDescription
URLAnyPut URL
DataStringData to upload

Delete

Web delete request

loading block...

Input ParamsTypeDescription
URLAnyLink to fetch data

Patch

Perform a PATCH request to partially update data at a URL

loading block...

Input ParamsTypeDescription
URLStringURL to send PATCH request to
DataAnyData to send in the request body

Properties

Set headers

Accepts: List

Set web request headers

loading block...

Get headers

Returns: List

Get web request headers

loading block...