Reset cursor
POST/v1/delta/streams/:connector/:stream/reset
Forcibly sets committed_cursor_value to new_cursor_value regardless
of monotonicity. Use this to backfill (move cursor backwards to re-fetch a
window) or to skip ahead (move cursor forwards past corrupt data).
Requires DELTA_RESET on the external API or delta_admin operation
on the internal API. Connector job tokens do NOT have this — only admin
routines / on-call playbooks should call it.
Always writes a row to delta_audit_log with event_type='cursor_reset',
the previous and new cursors, the calling api_user, and the supplied
reason. reason is required.
Request
Responses
- 200
- 400
- 401
- 403
- 422
- 500
Cursor reset
Bad request
Unauthorized
Forbidden — missing DELTA_RESET
Invalid cursor_type or cursor value
Internal server error