You are here

public function DrupalMandrill::urls_time_series in Mandrill 7

@link https://mandrillapp.com/api/docs/urls.html#method=time-series

Return value

array|MandrillException

File

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

Class

DrupalMandrill
Class DrupalMandrill.

Code

public function urls_time_series($url) {
  return $this
    ->request('urls/time-series', array(
    'url' => $url,
  ));
}