Skip to main content

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

  1. Create a breakpoint rule from a captured request or from the tool window.
  2. Trigger the matching request again.
  3. Rockxy pauses the request or response.
  4. Edit the relevant fields.
  5. 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.
That makes them especially useful during mobile, frontend, or SDK debugging where reproducing state in code can be slower than changing the wire data directly.

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.