Skip to main content

Web Request Reader

General

The Web Request data reader will send a web request to a URL and send the response body to the pipeline.

Module Options

Request Body

Type: text
Required: False
Description: The request body to send. This will only be used for POST, PUT, and PATCH Methods

Headers

Type: string[]
Required: True
Default Value: Content-Type: application/json
Description: The headers to include with the request. These should be written as Key: Value on each line.

Example:

Content-Type: application/json
Accept: application/json
Accept-Encoding: gzip
Authorization: Bearer JWT

Allow invalid certificates

Type: boolean
Required: True
Default Value: false
Description: Whether to allow invalid certificates for HTTPS requests. This should only be used if the URL you are hitting is a trusted resource, ideally one under your organization's control.

HTTP Method

Type: enum
Required: True
Default Value: POST
Options: POST, PUT, PATCH, GET
Description: The HTTP Method to use for the request. If sending a Request Body, you should not use the GET method.

URL

Type: string
Required: True
Description: The URL to send the request.