Delete a webhook
Deletes the webhook associated with the id.
Parameters
No parameters
Returns
Returns
200
with an empty object on success- cURL
- Node.js
- Python
DELETE
/webhooks/:webhook_id
curl https://production.methodfi.com/webhooks/whk_cSGjA6d9N8y8R \
-X DELETE \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
DELETE
/webhooks/:webhook_id
const webhook = await method.webhooks.delete('whk_cSGjA6d9N8y8R');
DELETE
/webhooks/:webhook_id
webhook = method.webhooks.delete('whk_cSGjA6d9N8y8R')