segmentDelete
public static bool emailDelete(string token, string segmentID)
Delete the Segment for given ID. Returns true if the segment was deleted.
| Parameters |
| string token | A valid token for your account. To generate a token, use the login method. |
| string segmentID | The segment ID to delete. To get all the emails, use the segmentGet method. |
| Returns |
| bool | Returns true if the segment was deleted. |
- <?php
- /**
- This Example shows how to authenticate a user 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.php';
- $client = XML_RPC2_Client::create($apiURL);
- $token = $client->login($apiLogin, $apiPassword);
-
- /**
- Fetch the latest segment, so we can retrieve the segment ID.
- **/
- $segmentList = $client->segmentGet($token, "", 1, 1, "");
- $segmentID = $segmentList[0]['id'];
-
- $deleted = $client->segmentDelete($token, $segmentID);
- ?>