Retrieve recorded requests from a given recorder key. This step must be used
after the record requests step to access the
captured requests and their responses.
The unique key of the recorded requests you want to retrieve. This key should
match the one used in the record requests step.
Configs
Save to environment variable
Store the output of this step into the environment at the given key. This
configuration only applies for steps that output data.
Outputs
The URL of the request that matched the pattern.
The HTTP method of the request (e.g., GET, POST).
A key-value object containing the request headers.
The JSON body of the request. This will be undefined if the content-type is not JSON.
The raw body of the request. This will be undefined if the content-type is not text.
The HTTP status code of the response.
A key-value object containing the response headers.
The JSON body of the response. This will be undefined if the content-type is not JSON.
The raw body of the response. This will be undefined if the content-type is not text.