Fast-forward sandbox time
Advances time for your sandbox data so time-dependent behavior happens now instead of
after a real wait. Back-dates your sandbox abandoned carts, stock reservations and analytics
events by advance_days, then runs the expiry/rollup jobs — so, for example, abandoned-cart
windows elapse, reserved stock is released, and analytics roll forward, all without waiting.
Only your sandbox data is affected; live data is never touched. The response reports what was
shifted and what was intentionally not (see not_shifted).
Requires a secret test key (tybrite_sk_test_*).
Authorizations
API Key Authentication
Use your API key in the Authorization header:
Key Types:
Secret Keys (Server-Side Only):
- Format:
tybrite_sk_live_*(production) ortybrite_sk_test_*(sandbox) - Full read/write access to all endpoints
- ⚠️ NEVER expose in client-side code or public repositories
- Required for: write operations, authentication, payment verification, AI recommendations
Publishable Keys (Client-Safe):
- Format:
tybrite_pk_live_*(production) ortybrite_pk_test_*(sandbox) - Read-only access (GET requests only, plus POST semantic search)
- ✅ Safe for client-side JavaScript, mobile apps, and public code
- Allowed for: browsing products, search, CMS content, pricing queries
Endpoint-Specific Requirements:
- Authentication endpoints (
/v1/auth/*): Secret key required - Payment verification (
POST /v1/payments/verify): Secret key required - AI Recommendations (
POST /v1/recommendations): Secret key required - Semantic Search (
POST /v1/search): Both key types allowed (read-only operation) - All write operations: Secret key required
- All read operations: Both key types allowed
Using a publishable key for restricted operations returns 403 Forbidden.
Body
Number of days to fast-forward (1–3650).
1 <= x <= 3650
