Don't forget to check out our JSON RESTful APIs, 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.
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 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
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
https://myapp.quickbase.com/db/bmdihpya6?a=API_Webhooks_Deactivate&actionIDList=1,2,3
Sample response
<qdbapi>
<action>API_Webhooks_Deactivate</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<numChanged>1,2,3</numChanged>
<success>true</success>
</qdbapi>