public function DrupalMandrill::webhooks_delete in Mandrill 7
@link https://mandrillapp.com/api/docs/webhooks.html#method=delete
Return value
array|MandrillException
File
- lib/
mandrill.inc, line 365 - Wrapper class around the Mandrill API.
Class
- DrupalMandrill
- Class DrupalMandrill.
Code
public function webhooks_delete($id) {
return $this
->request('webhooks/delete', array(
'id' => $id,
));
}