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
| Mode | How to use |
|---|---|
| Selective | Send a ruleActions array with { ruleId, actionId } pairs to reset specific actions |
| All | Add ?all=true query parameter (no request body needed) |
Where to find the IDs
ruleId— fromrules[].idin theGET /v2/decisions/{id}response.actionId— fromactions[].idin 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.