replay_response
Re-inspect cached API responses without re-executing requests. Avoid duplicate side effects for POST/PUT/DELETE with JSONPath filtering.
Instructions
Re-inspect a cached API response WITHOUT re-executing the request. Critical for POST/PUT/DELETE — avoids duplicate side effects. Supports JSONPath to drill into specific fields. Use index=-1 for latest (default), or negative index for older responses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| index | No | History index. -1=latest (default), -2=second latest, etc. | |
| jsonpath | No | JSONPath to filter the response body directly. Root $ = body root. e.g. '$.data.access_token' not '$.body.data.access_token' | |
| include_headers | No | Include response headers (default: false) | |
| include_request | No | Include the original request details (default: false) | |
| max_body_length | No | Max characters for response body |