Add a number/numbers to a 'send' group (excluding 'merge' groups).
$add=$tmClient->addNumbersToGroupWithName(array('447000000001','447000000002'), 'My Group');
if (!empty($add['added']))
{
echo count($add['added'])." numbers were successfully added:<br/>\n";
foreach ($add['added'] as $number)
echo "$number <br/>\n";
} |
Our example code is an illustration of how you might integrate with our systems and is not certified for production environments. You are responsible for testing and QA. |