You are here

function Mandrill::webhooks_info in Mandrill 6

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

Return value

array|Mandrill_Exception

File

./mandrill.class.php, line 318

Class

Mandrill

Code

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