Set Allow Insecure

Many time in development env, there are no valid ssl crets. Enable send https without verifying the server’s certificates (disabled by default).

request:
  allowInsecure: true

Example

name: Set Allow Insecure
stages:
  - name: this will allow insecure request
    request:
      url: "https://httpbin.org/get"
      method: GET
      allowInsecure: true