Replaying from the CLI
Updating a Request by Replaying
Command
stoobly-agent request replay --overwrite <REQUEST-KEY>
Updating Multiple Requests by Replaying
Grab the key of all the requests that need updating
request_keys=$(stoobly-agent request list --search "<SEARCH-PHRASE>" --select key --without-headers)
The search option will match either by the request's hostname or path. Currently regex is not supported.
Pass each request key to the replay command
echo $request_keys | xargs stoobly-agent request replay --overwrite
Last updated
Was this helpful?