Http
8 posts tagged with "Http"
http-delete
The http-delete action sends a low level http DELETE request. It belongs to the http category within the network area.
Action Syntax
http-delete https://...
http-delete $variable
Return Value
This function returns a
$result = http-delete
Valid sizes
Examples
// Basic Usage
$response = http-delete https://someurl
http-get
The http-get action Retrieves data from a web server using GET request. It belongs to the http category within the network area.
Action Syntax
http-get https://...
http-get $variable
Return Value
This function returns a
$result = http-get
Valid sizes
Examples
// Basic Usage
$response = http-get https://someurl
http-post
The http-post action sends a low level http POST request. It belongs to the http category within the network area.
Action Syntax
http-post https://...
http-post $variable
Return Value
This function returns a
$result = http-post
Valid sizes
Examples
// Basic Usage
$response = http-post https://someurl
http-put
The http-put action sends a low level http PUT request. It belongs to the http category within the network area.
Action Syntax
http-put https://...
http-put $variable
Return Value
This function returns a
$result = http-put
Valid sizes
Examples
// Basic Usage
$response = http-put https://someurl
proxy
The proxy action sets proxy mode. It belongs to the http category within the network area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
proxy
set-http-body
The set-http-body action sets HTTP request body. It belongs to the network category within the external area.
Action Syntax
set-http-body IT
set-http-body $variable
Valid sizes
Examples
// Basic Usage
set-http-body {item}
// Using Variables
// Display dynamic content from variables
set-http-body $variable
set-http-header
The set-http-header action Sets a custom header for HTTP requests. It belongs to the http category within the network area.
Action Syntax
set-http-header "text" "text"
set-http-header "text" $variable
set-http-header $variable $variable
Valid sizes
Examples
// Basic Usage
set-http-header "name" "value"
// Using Variables
// Display dynamic content from variables
set-http-header "name" $value-var
set-http-timeout
The set-http-timeout action sets the timeout for the http-* actions. It belongs to the http category within the network area.
Action Syntax
set-http-timeout 30m
Valid sizes
Examples
// Basic Usage
set-http-timeout 10m