2023-07-15 06:54:49 +00:00
|
|
|
- variable: customRequestHeaders
|
|
|
|
label: Custom Request Headers
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
items:
|
|
|
|
- variable: customRequestHeadersEntry
|
|
|
|
label: ""
|
|
|
|
schema:
|
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: name
|
|
|
|
label: Name
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
- variable: headers
|
|
|
|
label: Headers to Add
|
|
|
|
schema:
|
|
|
|
type: list
|
|
|
|
default: []
|
|
|
|
items:
|
2023-10-03 20:14:29 +00:00
|
|
|
- variable: headersEntry
|
|
|
|
label: ""
|
2023-07-15 06:54:49 +00:00
|
|
|
schema:
|
2023-10-03 20:14:29 +00:00
|
|
|
additional_attrs: true
|
|
|
|
type: dict
|
|
|
|
attrs:
|
|
|
|
- variable: name
|
|
|
|
label: Header Name
|
|
|
|
description: Name of custom header to be added to requests, eg. X-Custom-Header
|
|
|
|
schema:
|
|
|
|
valid_chars: ^[a-zA-Z0-9_\-]*$
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
default: ""
|
|
|
|
- variable: value
|
|
|
|
label: Header Value
|
|
|
|
description: The value of the header. If the value is empty, the header will be removed.
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
default: ""
|