« Back to Documentation OverviewlistInterestGroupDel – v1.3
listInterestGroupDel(string apikey, string id, string group_name, int grouping_id)
Delete a single Interest Group - if the last group for a list is deleted, this will also turn groups for the list off.
| Parameters | xml-rpc_listInterestGroupDel.php| apikey | a valid API Key for your user account. Get by visiting your API dashboard |
| id | the list id to connect to. Get by calling lists() |
| group_name | the interest group to delete |
| grouping_id | The grouping to delete the group from - get using listInterestGrouping() . If not supplied, the first grouping on the list is used. |
| Returns | | bool |
true if the request succeeds, otherwise an error will be thrown |
Examples (1)
download example code
[1] xml-rpc_listInterestGroupDel.php
<?php
/**
This Example shows how to delete an Interest Group from one of your lists.
using XML-RPC.
Note that we are using the PEAR XML-RPC client and recommend others do as well.
**/
require_once 'XML/RPC2/Client.php';
require_once 'inc/config.inc.php';
try {
$result = $client->listInterestGroupDel($apikey, $listId, 'A test');
echo "Result returned: ".$result."\n"; } catch (XML_RPC2_FaultException $e){
echo $e->getFaultCode()." : ".$e->getFaultString()."\n"; }
?>