listDeleteEmailContact
public static bool listDeleteEmailContact(string token, string listID, string contacts)
Delete a contact which matches the email from the given contact list.
Section
Contact List Related Methods

Parameters
string tokenA valid token for your account. To generate a token, use the login method.
string listIDThe contact list ID in which to delete contact. To get all the contact lists, use the listGet method.
string emailThe email to delete.

Returns
boolReturns true in case contact were deleted.


Examples
download example code
xmlrpc_listDeleteEmailContact.php


  1. <?php
  2. /**
  3. This Example shows how to authenticate a user using XML-RPC.
  4. Note that we are using the PEAR XML-RPC client and recommend others do as well.
  5. **/
  6. require_once 'XML/RPC2/Client.php';
  7. require_once 'inc/config.php';
  8. $client = XML_RPC2_Client::create($apiURL);
  9. $token = $client->login($apiLogin, $apiPassword);
  10.  
  11. /**
  12. Fetch the latest contact list, so we can retrieve the contact list ID.
  13. **/
  14. $contactList = $client->listGet($token, "", 1, 1, "", "");
  15. $listID = $contactList[0]['id'];
  16.  
  17. /**
  18. Prepare the data to delete.
  19. **/
  20. $email = "bruce@bme.com";
  21.  
  22. $active = $client->listDeleteEmailContact($token, $listID, $email);
  23.  
  24. ?>