Method: Particle::Client::Webhooks#remove_webhook

Defined in:
lib/particle/client/webhooks.rb

#remove_webhook(target) ⇒ boolean

Remove a Particle webhook

Parameters:

Returns:

  • true for success



57
58
59
60
# File 'lib/particle/client/webhooks.rb', line 57

def remove_webhook(target)
  result = delete(webhook(target).path)
  result[:ok]
end