field query_string_parameters : dict[str, str] | None= None
Query string parameters to send with the request.
field basic_auth : str | None= None
Basic auth credentials to use with the request. Should be in the format ‘username:password
’
field timeout : float | None= None
Timeout for the request in seconds.
Constraints:
le = 300.0
field body : JsonValue | None= None
Body to send with the request (if applicable)
field captures : dict[str, str] | None= None
Capture values from the response. The key is the name of the capture, and the value is a Jinja template to extract the value from the response. For example, {‘foo’: ‘response.status_code’} would extract the value of response.status_ocde and store it as ‘foo’ variable. Available variables are response.content, response.status_code, response.text, and response.headers. The response.content is decoded as a string. Consider post-processing the value with Jinja filters if necessary. If JSON response is expected, apply JsonPath@1 action after.