Back to Documentation Overview

listInterestGroupAdd

public static listInterestGroupAdd(string apikey, string id, string group_name)

Add a single Interest Group

Section:
List Related
Parameters:
apikey a valid API Key for your user account. Get by calling Get by visiting your API dashboard
id the list id to connect to. Get by calling lists()
group_name the interest group to add
Returns:
bool   -  true if the request succeeds, otherwise an error will be thrown

Examples (1)

download example code

[1] xml-rpc_listInterestGroupAdd.php

  1. <?php
  2. /**
  3. This Example shows how to add an Interest Group to one of your lists.
  4. using XML-RPC.
  5. Note that we are using the PEAR XML-RPC client and recommend others do as well.
  6. **/
  7. require_once 'XML/RPC2/Client.php';
  8. require_once 'inc/config.inc.php';
  9. try {
  10. $client = XML_RPC2_Client::create($apiUrl);
  11.  
  12. $result = $client->listInterestGroupAdd($apikey, $listId, 'A test');
  13. echo "SUCCESS! \n";
  14. echo "Result returned: ".$result."\n";
  15. } catch (XML_RPC2_FaultException $e){
  16. echo "ERROR!!!!\n";
  17. echo $e->getFaultCode()." : ".$e->getFaultString()."\n";
  18. }
  19.  
  20.  
Add New Note User Contributed Notes for listInterestGroupAdd
No notes, yet... Will you be the first??