You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
569 B
33 lines
569 B
<?php
|
|
|
|
include 'DemoBase.php';
|
|
global $client;
|
|
|
|
$body = [
|
|
'MessageType' => 'record',
|
|
'Vhost' => 'vhost',
|
|
'CallbackDetailList' => [],
|
|
];
|
|
|
|
$response = $client->updateCallback(['json' => $body]);
|
|
echo $response;
|
|
echo '<br>';
|
|
|
|
$body = [
|
|
'MessageType' => 'record',
|
|
'Domain' => 'domain',
|
|
'App' => 'app',
|
|
];
|
|
|
|
$response = $client->describeCallback(['json' => $body]);
|
|
echo $response;
|
|
echo '<br>';
|
|
|
|
$body = [
|
|
'MessageType' => 'record',
|
|
'Vhost' => 'vhost1',
|
|
];
|
|
|
|
$response = $client->deleteCallback(['json' => $body]);
|
|
echo $response;
|
|
echo '<br>';
|
|
|