You are here

function MCAPI::listWebhookDel in Mailchimp 7

Same name and namespace in other branches
  1. 6.2 MCAPI.class.php \MCAPI::listWebhookDel()

Delete an existing Webhook URL from a given list

Related

Parameters

string $id the list id to connect to. Get by calling lists():

string $url the URL of a Webhook on this list:

Return value

boolean true if the call succeeds, otherwise an exception will be thrown

File

./MCAPI.class.php, line 1129

Class

MCAPI

Code

function listWebhookDel($id, $url) {
  $params = array();
  $params["id"] = $id;
  $params["url"] = $url;
  return $this
    ->callServer("listWebhookDel", $params);
}