Creates an action that, when executed, will return the results of performing a {0} request against {1} using HTTP as a binary value. An optional record parameter, {2}, may be provided to specify additional properties. The record can contain the following fields:
Query
: Programmatically add query parameters to the URL without having to worry about escaping.ApiKeyName
: If the target site has a notion of an API key, this parameter can be used to specify the name (not the value) of the key parameter that must be used in the URL. The actual key value is provided in the credential.Content
: Specifying this value changes the web request from a GET to a POST, using the value of theContent
field as the content of the POST.Headers
: Specifying this value as a record will supply additional headers to an HTTP request.Timeout
: Specifying this value as a duration will change the timeout for an HTTP request. The default value is 100 seconds.IsRetry
: Specifying this logical value as true will ignore any existing response in the cache when fetching data.ManualStatusHandling
: Specifying this value as a list will prevent any builtin handling for HTTP requests whose response has one of these status codes.RelativePath
: Specifying this value as text appends it to the base URL before making the request.
Creates an action that when executed replaces the content of {0} with {1}. The function raises an evaluation error if {0} ...
Creates an action that will try the execution of a second action that returns a result. The result of the Try action is a ...
Creates an action that will try the execution of a second action that throws an error. The result of the Try action is the ...
Creates an action that, when executed, will execute the first action (which returns "hello" ), combine its result with the ...
Creates an action that, when executed, will return the results of performing a {0} request against {1} using HTTP as a binary ...
Creates an action to delete the rows in {0}. The action returns a table containing the deleted rows as they appeared in {0} ...
Creates an action to delete the rows in {0}. The action returns the number of rows deleted. To delete a subset of the rows ...
Creates an action to return all messages from the queue specified through MQ.Queue {0} if any messages exist. The read is ...
Creates an action to return one message from the queue specified through MQ.Queue {0} if a message exists. The read is destructive. ...