segmentGetCount
public static int segmentGetCount(string token, string filter)
Get the number of segments with the filter.
| Parameters |
| string token | A valid token for your account. To generate a token, use the login method. |
| string filter | Show segments where name starts with the filter |
| Returns |
| int | Returns the number of segments. |
- <?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);
- $segments = $client->segmentGetCount($token, "");
-
- echo $segments;
-
- ?>