Home Schema Example JSON Schema

Request Settings

Type: object

These additional settings will be used with HTTPS source URLs in the request.

No Additional Properties

Method

Type: enum (of string)

Request method. Defaults to incoming request method.

Must be one of:

  • "get"
  • "post"
  • "put"
  • "patch"
  • "delete"
  • "head"
  • "options"

Params


Dictionary or string (will be sent as-is) to send in the query string for the Request.

Dictionary

Type: object

Each additional property must conform to the following schema

Type: string

String

Type: string

JSON

Type: object

A JSON serializable Python object to send in the body of the Request.

Headers

Type: object

Dictionary of HTTP Headers to send with the Request.

Each additional property must conform to the following schema

Type: string

Auth

Type: array

Auth tuple to enable Basic HTTP Auth.

No Additional Items

Tuple Validation

Item at 1 must be:

User

Type: string
Item at 2 must be:

Password

Type: string

Allow Redirects

Type: boolean

Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to true.

Timeout

Type: number

How many seconds to wait for the server to send data before giving up. Defaults to 3.