web
Overview
Any web requests handler
Blocks
Events
Got Response
Response for get request
loading block...
| variable | type | description |
|---|---|---|
| response | Any | Returns fetched data from URL |
On error
On web request throw error
loading block...
| variable | type | description |
|---|---|---|
| status | Any | The status of the request |
| statusText | Any | The status text of the request |
| responseType | Any | The response type of the request |
| url | Any | The URL of the request |
Post Response
Response for post request
loading block...
| variable | type | description |
|---|---|---|
| status | Any | Status code for post request |
| response | Any | Response for post request |
| url | Any | Request URL post request |
Put Response
Response for put request
loading block...
| variable | type | description |
|---|---|---|
| response | Any | Put request response |
Put onchange
On change response for put request
loading block...
| variable | type | description |
|---|---|---|
| response | Any | Put request on change response |
Delete Response
Response for delete request
loading block...
| variable | type | description |
|---|---|---|
| response | Any | Returns fetched data from URL |
Patch Response
Triggered when a PATCH request is successful
loading block...
| variable | type | description |
|---|---|---|
| response | Any | Response from the PATCH request |
Methods
Get
Web get request
loading block...
| Input Params | Type | Description |
|---|---|---|
| URL | Any | Link to fetch data |
Post
Web post request
loading block...
| Input Params | Type | Description |
|---|---|---|
| URL | String | URL to fetch using post request |
| Data | String | Parameters for post request |
PUT
Web put request
loading block...
| Input Params | Type | Description |
|---|---|---|
| URL | Any | Put URL |
| Data | String | Data to upload |
Delete
Web delete request
loading block...
| Input Params | Type | Description |
|---|---|---|
| URL | Any | Link to fetch data |
Patch
Perform a PATCH request to partially update data at a URL
loading block...
| Input Params | Type | Description |
|---|---|---|
| URL | String | URL to send PATCH request to |
| Data | Any | Data 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...