Method: WebhooksClient#delete_webhook
- Defined in:
- lib/lockstep_sdk/clients/webhooks_client.rb
#delete_webhook(id:) ⇒ Object
Deletes the Webhook referred to by this unique identifier.
52 53 54 55 |
# File 'lib/lockstep_sdk/clients/webhooks_client.rb', line 52 def delete_webhook(id:) path = "/api/v1/Webhooks/#{id}" @connection.request(:delete, path, nil, nil) end |