Don't forget to check out our JSON RESTful APIs, they can help you utilize and extend Quickbase with ease.
Overview
Use API_Webhooks_Activate to make a webhook active.
Request Parameters
Parameter | Value | Required? |
---|---|---|
actionIDList |
Comma-separated IDs of the webhook |
yes |
Response values
Property tag | Description |
---|---|
numChanged |
Denotes how many webhooks were activated |
Sample XML Request
POST https://target_domain/db/target_dbid?
Content-Type: application/xml
Content-Length:
QUICKBASE-ACTION: API_Webhooks_Activate
<qdbapi>
<usertoken>buacrj_uyp_iag2s56b7t8opp5edsvt</usertoken>
<actionIDList>1</actionIDList>
</qdbapi>
URL alternative
https://myApp.quickbase.com/db/bmdihpya6?a=API_Webhooks_Activate&actionIDList=1
Sample response
<?xml version="1.0" ?>
<qdbapi>
<action>API_Webhooks_Activate</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<numChanged>1</numChanged>
<success>true</success>
</qdbapi>