Time Machine — list revert batches
The Time Machine ledger: every trading-day revert your organization has ever run, newest first. Single-account reverts appear as batches of one; bulk reverts as one batch covering all their accounts.
Use this to build an admin history view (“who reverted what, when, and why”) and as the entry point for undo: pick a batch, inspect it with GET /revert-batches/{batchId}, and reverse it with POST /revert-batches/{batchId}/undo.
undoneCount vs accountCount tells you the batch state at a glance: 0 = fully in effect, equal = fully undone, in between = partially undone (some accounts had new activity when the undo ran).
Example:
curl "https://api.hyperprop.com/platform/v1/organization/revert-batches?limit=20" \
-H "X-API-Key: hp_live_your_key_here"
Authorizations
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Query Parameters
Results per page
1 <= x <= 200Pagination offset
x >= 0Related topics
Time Machine — inspect a revert batchTime Machine — undo a revert batchTime Machine — bulk revert accounts to a trading dayTime Machine — revert an account to a trading dayList roles (system presets + your custom roles)