mock or proxy.
The important part: your caller keeps using the same GoDizzy URL either way.
Mock
Mock rules return a configured response immediately. You can configure:- status code
- response headers
- response body
- latency range
- deterministic testing
- local development
- failure simulation
- CI and evals
Proxy
Proxy rules forward the request to the collection target endpoint while preserving the request shape. Proxy is best for:- validating behavior against a live upstream
- shared or live traffic
- incremental rollouts where some routes stay mocked and others go live
