/api/v2/{coin}/webhooks
Removing a webhook will cause new events of the specified type to no longer trigger HTTP callbacks to your URLs.
coin
stringRequiredbtc
type
string required block
wallet_confirmation
block
url
string <uri>
required https://your.server.com/user_webhook
id
string 59cd72485007a239fb00282ed480da1f
^[0-9a-f]{32}$
1 2 3 4 5 6 7 8 9 10 11
var baseCoin = bitgo.coin('tbtc'); var webhooks = baseCoin.webhooks(); webhooks .remove({ url: 'http://your.server.com/user_webhook', type: 'block', }) .then(function (result) { console.dir(result); });
removed
integer 1