You are here

public function DrupalMandrill::webhooks_info in Mandrill 7

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

Return value

array|MandrillException

File

lib/mandrill.inc, line 374
Wrapper class around the Mandrill API.

Class

DrupalMandrill
Class DrupalMandrill.

Code

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