File: /home/bdedition/www/core/vendor/messagebird/php-rest-api/examples/voice-webhooks-update.php
<?php
require_once(__DIR__ . '/../autoload.php');
$messageBird = new \MessageBird\Client('YOUR_ACCESS_KEY'); // Set your own API access key here.
$webhook = new \MessageBird\Objects\Voice\Webhook();
$webhook->url = 'https://example.com/foobar';
$webhook->token = 'baz';
try {
$result = $messageBird->voiceWebhooks->update($webhook, 'e5f56d49-4fa2-4802-895d-b0a306f73f76');
var_dump($result);
} catch (\Exception $e) {
echo sprintf("%s: %s", get_class($e), $e->getMessage());
}