Reset action limits

POST 

/v2/illuminate/decisions/:id/action-limit-reset

Resets action execution limits so actions can fire again after hitting their executionLimitType cap. Useful for debugging and testing.

Two modes

ModeHow to use
SelectiveSend a ruleActions array with { ruleId, actionId } pairs to reset specific actions
AllAdd ?all=true query parameter (no request body needed)

Where to find the IDs

  • ruleId — from rules[].id in the GET /v2/decisions/{id} response.
  • actionId — from actions[].id in the same response.

Tip: After resetting, the next evaluation cycle that matches rule conditions will re-trigger the action as if it had never executed.

Request