File: /home/bdedition/www/core/vendor/messagebird/php-rest-api/examples/verify-view.php
<?php
require_once(__DIR__ . '/../autoload.php');
$messageBird = new \MessageBird\Client('YOUR_ACCESS_KEY'); // Set your own API access key here.
try {
$verifyResult = $messageBird->verify->read('05a90ee1155d2f4cdd12440v10006813'); // Set a message id here
var_dump($verifyResult);
} catch (\MessageBird\Exceptions\AuthenticateException $e) {
// That means that your accessKey is unknown
echo 'wrong login';
} catch (\Exception $e) {
echo $e->getMessage();
}