diff --git a/remoting_client/examples/sites_web_domain_get.php b/remoting_client/examples/sites_web_domain_get.php
index 7f5b22f6ac4fe53a5815a504444c5b6167e4159f..47fe8cbd44cbf52d94b255c9ff81eb452c99893e 100644
--- a/remoting_client/examples/sites_web_domain_get.php
+++ b/remoting_client/examples/sites_web_domain_get.php
@@ -16,9 +16,14 @@ try {
 
 	//* Set the function parameters.
 	$domain_id = 2;
+	$domain_name = 'example.com';
 
+	// Lookup by ID.
 	$domain_record = $client->sites_web_domain_get($session_id, $domain_id);
 
+	// Lookup by name.
+	$domain_record = $client->sites_web_domain_get($session_id, array('domain' => $domain_name));
+
 	print_r($domain_record);
 
 	if($client->logout($session_id)) {