You are here

function Mandrill::webhooks_delete in Mandrill 6

@link https://mandrillapp.com/api/docs/webhooks.html#method=delete

Return value

array|Mandrill_Exception

File

./mandrill.class.php, line 309

Class

Mandrill

Code

function webhooks_delete($id) {
  return $this
    ->request('webhooks/delete', array(
    'id' => $id,
  ));
}