WebAction.Request
This function creates an action that can be executed to retrieve the results of a method request from a specified URL using HTTP as a binary value. Optional parameters, referred to as options, can be ...
WebAction.Request(method as text, url as text, optional options as nullable record) as action.
This function creates an action that can be executed to retrieve the results of a method request from a specified URL using HTTP as a binary value. Optional parameters, referred to as options, can be provided to customize the request. These options include:
- Query: Adds query parameters to the URL programmatically without requiring manual escaping.
- ApiKeyName: Specifies the name of the API key parameter (not the value) to be used in the URL if the target site requires an API key. The actual key value is provided in the credential.
- Headers: Additional headers can be added to the HTTP request by supplying this parameter as a record.
- Timeout: Sets the timeout duration for the HTTP request. The default value is 100 seconds.
- ExcludedFromCacheKey: Specifies a list of HTTP header keys to exclude from cache data calculation.
- IsRetry: When set to true, this logical value will ignore any existing response in the cache when fetching data.
- ManualStatusHandling: Prevents built-in handling for HTTP requests w