---
title: "API_Webhooks_Deactivate"
slug: "api-webhooks-deactivate"
updated: 2025-08-18T09:40:05Z
published: 2025-08-18T09:40:05Z
canonical: "help.quickbase.com/api-webhooks-deactivate"
---

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

# API_Webhooks_Deactivate

**Don't forget to check out our**[**JSON RESTful APIs**](https://developer.quickbase.com/)**, they can help you utilize and extend Quickbase with ease.**

## Overview

Use API_Webhooks_Deactivate to disable a webhook. To reactivate a webhook, use [API_Webhook_Activate](/v1/docs/api-webhooks-activate).

## Request Parameters

| Parameter | Value | Required? |
| --- | --- | --- |
| actionIDList | Comma-separated IDs of the webhook | yes |

## Response values

| Element Name | Value |
| --- | --- |
| action | The originating request, for example, API_Webhooks_Deactivate |
| errcode | Identifies the error code, if any. (See the [Error Codes appendix](/v1/docs/error-codes) for a list of possible error codes.) 0 indicates that no error was encountered. |
| errtext | Text that explains the error code. "No error" indicates that no error was encountered. |
| numChanged | Denotes the number of webhooks that were deactivated. |
| success | true or false |

## Sample XML Request

```xml
POST https://target_domain/db/target_dbid?
Content-Type: application/xml
Content-Length:
QUICKBASE-ACTION: API_Webhooks_Deactivate
<qdbapi>
<usertoken>buacrj_uyp_iag2s56b7t8opp5edsvt</usertoken>
<actionIDList>15</actionIDList>
</qdbapi>
```

## URL alternative

```plaintext
https://myapp.quickbase.com/db/bmdihpya6?a=API_Webhooks_Deactivate&actionIDList=1,2,3
```

## Sample response

```xml
<qdbapi>
<action>API_Webhooks_Deactivate</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<numChanged>1,2,3</numChanged>
<success>true</success>
</qdbapi>
```
