function MCAPI::listWebhookDel in Mailchimp 6.2
Same name and namespace in other branches
- 7 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 1314
Class
Code
function listWebhookDel($id, $url) {
$params = array();
$params["id"] = $id;
$params["url"] = $url;
return $this
->callServer("listWebhookDel", $params);
}