You are here

function MCAPI::listInterestGroupingDel in Mailchimp 6.2

Delete an existing Interest Grouping - this will permanently delete all contained interest groups and will remove those selections from all list members

Related

@example xml-rpc_listInterestGroupingDel.php

Parameters

int $grouping_id the interest grouping id - get from listInterestGroupings():

Return value

bool true if the request succeeds, otherwise an error will be thrown

File

./MCAPI.class.php, line 1255

Class

MCAPI

Code

function listInterestGroupingDel($grouping_id) {
  $params = array();
  $params["grouping_id"] = $grouping_id;
  return $this
    ->callServer("listInterestGroupingDel", $params);
}