> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lt.cryptoprocessing.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable withdrawals

export const Available = ({to}) => <>
    <strong>Available to <Tooltip tip="Roles determine what each user can see and do in the merchant dashboard." cta="See role descriptions" href="/merchant-administration/add-a-user#determine-which-role-to-use">roles</Tooltip></strong>:
    {to.map(role => <>{" "}<Badge color="blue">{role}</Badge></>)}
</>;

export const Processing = () => <Badge stroke shape="rounded" color="yellow">Processing</Badge>;

export const Verifying = () => <Badge stroke shape="rounded" color="yellow">Verifying</Badge>;

export const Pending = () => <Badge stroke shape="rounded" color="yellow">Pending</Badge>;

<Available to={["Owner"]} />

If you need to stop all outgoing transactions for your merchant account — for example, while investigating suspicious activity — you can disable withdrawals from the merchant dashboard. Once disabled, withdrawals can only be turned back on by contacting our Support team.

Once withdrawals are disabled, a message is shown on the **Balances** tab of the merchant dashboard that withdrawal functionality is currently unavailable for this merchant, and no new withdrawal requests can be created. This affects the following transaction types:

* Withdrawals (with or without automatic conversion)
* Withdrawals to cold addresses
* Instant withdrawals (with or without automatic conversion)
* Mass payouts

<Note>
  Withdrawals that were already underway when withdrawals were disabled aren't stopped mid-flight — they still fail, just not immediately:

  * If a withdrawal had already reached <Processing />, it fails there.
  * If a withdrawal was still <Verifying />, it first moves to <Processing />, then fails.
</Note>

## Disable withdrawals

<Steps>
  <Step title="">
    In your merchant dashboard, go to **Settings** and open the **Withdrawal limit** tab.
  </Step>

  <Step title="">
    Switch to the **Withdrawals settings** tab and click **Disable withdrawals**.
  </Step>

  <Step title="">
    Optionally, add a note describing why withdrawals are being disabled.
  </Step>

  <Step title="">
    Enter your 2FA code and click **Confirm**.
  </Step>
</Steps>

## Enable withdrawals again

Withdrawals cannot be re-enabled from the merchant dashboard. To turn withdrawals back on, contact our Support team.

<Card type="danger">
  Before requesting that Support re-enable withdrawals, review the following:

  * **[Configured cold addresses](/merchant-administration/configure-automatic-withdrawals-to-cold-addresses#configure-a-cold-addresses)** — once withdrawals are turned back on, automatic withdrawal rules are evaluated again. If a currency's balance has reached or exceeded its configured **Min Transaction Amount** threshold while withdrawals were disabled, the system will immediately trigger an automatic withdrawal to the cold address configured for that currency. Carefully review the configured cold addresses before re-enabling withdrawals.
  * **[Pending withdrawals awaiting approval](/withdrawals/approve-a-withdrawal)** — withdrawals that were already <Pending /> when withdrawals were disabled couldn't be approved while disabled, and may still be sitting in the <Pending /> status. Review pending withdrawals carefully.
</Card>
