Endpoint
Overview
Reset warmup activity for an account. This endpoint has two modes:- Reset mode (default): Resets the run count for all warmup tasks, causing them to re-execute
- Delete mode: Completely removes all warmup tasks from the account
Request Body
string
required
The ID of the account to reset warmup for
boolean
default:false
If
true, deletes all warmup tasks completely. If false (default), resets task run counts so they will re-executeResponse
string
Success message describing the action taken
number
Number of warmup tasks that were reset or deleted
'reset' | 'deleted'
The action that was performed:
'reset' if tasks were reset to re-run, 'deleted' if tasks were removedReset vs Delete
Reset Mode (delete_activity: false)
- Tasks remain in the database but are marked to re-run
- Task history is preserved
- Warmup will resume from the beginning
- Use when you want to restart warmup while keeping task records
Delete Mode (delete_activity: true)
- All warmup tasks are permanently removed
- Task history is lost
- Account can have fresh warmup tasks scheduled
- Use when you want to completely clear warmup activity
