Documentation Index
Fetch the complete documentation index at: https://docs.rockxy.io/llms.txt
Use this file to discover all available pages before exploring further.
Breakpoints
Breakpoints are the right tool when you want to inspect or modify a live request or response before it continues.Use breakpoints when
- you want to change a request body without changing app code,
- you need to test a different response payload immediately,
- you want to alter headers, query parameters, or method mid-flight,
- or you are reproducing a bug that depends on one precise request shape.
How the workflow works
- Create a breakpoint rule from a captured request or from the tool window.
- Trigger the matching request again.
- Rockxy pauses the request or response.
- Edit the relevant fields.
- Choose whether to execute, cancel, or abort it.
Request-phase versus response-phase
Use a request breakpoint when the client is sending the wrong thing. Use a response breakpoint when the server replied with something close to what you need but not exactly the scenario you want to test.Why breakpoints are powerful
They shorten the feedback loop between:- observe,
- change,
- resend,
- verify.
Related pages
Request Replay
Use replay when you want a faster resend without pausing live traffic.
Map Local
Use a fixed local response once you already know the payload you want.
