Messages are received from SMS recipient phone carrier in cases SMS was not delivered. Phone list with additional parameters is returned.
smsCampaignBounces(string $cid, integer $start, integer $limit) : array
Array of bounce messages. Each message is represented as an array that includes:
smsCampaignBounces($cid, $start, $limit); header("Content-Type: text/plain"); if ($api->errorCode){ echo "Unable to load smsCampaignBounces()!"; echo "\tCode=".$api->errorCode."\n"; echo "\tMsg=".$api->errorMessage."\n"; } else { echo "SMS not delivered: ". sizeof($retval). "\n"; foreach($retval as $msg){ echo $msg['phone']."\n"; echo $msg['reason']."\n\n"; } }