Skip to content
Snippets Groups Projects
Commit e5ac9179 authored by Helmo's avatar Helmo
Browse files

Add example for domains_domain_update

parent c42fed03
No related branches found
No related tags found
No related merge requests found
<?php
require 'soap_config.php';
$client = new SoapClient(null, array('location' => $soap_location,
'uri' => $soap_uri,
'trace' => 1,
'exceptions' => 1));
try {
if($session_id = $client->login($username, $password)) {
echo 'Logged successfull. Session ID:'.$session_id.'<br />';
}
//* Set the function parameters.
$client_id = 1;
$primary_id = 42; // The domain_id
$params = array(
'domain' => 'cellar.door'
);
$domain_id = $client->domains_domain_update($session_id, $client_id, $primary_id, $params);
echo "Domain ID: ".$domain_id."<br>";
if($client->logout($session_id)) {
echo 'Logged out.<br />';
}
} catch (SoapFault $e) {
echo $client->__getLastResponse();
die('SOAP Error: '.$e->getMessage());
}
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment