---
title: "Disable warmup for accounts"
method: POST
path: "/api/v2/accounts/warmup/disable"
tags: ["Account"]
---

# Disable warmup for accounts

`POST /api/v2/accounts/warmup/disable`

Initiates a background job to disable warmup for the specified accounts. The response will contain the initial background job object. You can monitor the job's progress by polling the `GET: /api/v2/background-jobs/:id` endpoint.

## Request body

- object
  - `emails` string[] — List of emails to disable warmup accounts for. The emails should be attached to accounts in your workspace.
  - `include_all_emails` boolean — If true, it will disable warmup to all accounts
  - `excluded_emails` string[] — List of emails to exclude when `include_all_emails` is `true`.
  - `filter` object, nullable — Optional filter to apply when `include_all_emails` is `true`. Can contain tag_id or other filter criteria.
    - `tag_id` string — The ID of the tag to filter accounts by.
    - `filter` 'ACC_FILTER_PAUSED' | 'ACC_FILTER_ERROR' | 'ACC_FILTER_NO_CTD' | 'ACC_FILTER_PW_ACCOUNTS' | 'ACC_FILTER_DFY' | 'ACC_FILTER_DFY_SETUP_PENDING' | 'ACC_FILTER_W_ACTIVE' | 'ACC_FILTER_W_PAUSED' | 'ACC_FILTER_W_ERROR' | 'null', nullable — The filter to apply to the accounts.
  - `search` string — Optional search query to filter accounts when `include_all_emails` is `true`.

## Response `200`

The requested Background Job

- BackgroundJob — A background job that can be used to perform long-running tasks
  - `id` string, required — Unique identifier for the background job
  - `workspace_id` string, uuid, required — Workspace ID
  - `user_id` string, uuid, nullable — The id of the user that triggered the action that created the job
  - `type` 'move-leads' | 'import-leads' | 'export-leads' | 'update-warmup-accounts' | 'rename-variable' | 'broadcast-ai-generate' | 'broadcast-website-scrape' | 'import-subscribers-from-crm' | 'resync-subscriber-crm-tags', required — Type of background job
  - `entity_id` string, uuid, nullable — The id of the entity that the job is related to
  - `entity_type` 'list' | 'campaign' | 'workspace' | 'broadcast' | 'subscriber-group-sync' | 'subscriber-group' — Type of entity
  - `data` object — Data about the job, used to store any additional information we need to process the job
    - `moved_lead_emails` string[] — For `move-leads` jobs, up to the first 10,000 email addresses of leads that actually moved or copied to the destination after all filters were applied. Use `moved_leads` for the full count.
  - `progress` number, required — Progress of the job as a percentage (from 0 to 100)
  - `status` 'pending' | 'in-progress' | 'success' | 'failed' | 'draining' | 'paused' | 'cancelled', required — Job status
  - `created_at` string, required — Timestamp when the job was created
  - `updated_at` string, required — Timestamp when the job was last updated

## Other responses

- `401` — This request is unauthorized (either the Authorization header is missing or invalid, or the API key has been revoked)
- `402` — This request cannot be fulfilled because the workspace does not have an active paid plan
- `404` — The requested resource was not found
- `429` — You have exceeded the rate limit. Please check the rate limit docs for more information.

---

[API](https://skmtc.net/instantly/apis/api-explorer.md) · [All operations](https://skmtc.net/instantly/apis/api-explorer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/instantly/api-explorer/versions/378d1e253fe7/schema)
