GetNameserversStatus

%Plugin_Name%_GetNameserversStatus

Purpose

Use this function to check the status of name servers' registration.

Input Parameters

  • configarray: an array of parameters defined during the plugin configuration.
  • tld: a top-level domain name.
  • sld: a second-level domain name.
  • additionalfields: supplementary data for further domain processing.
  • ns1, ns2, ..., ns5: name servers whose registration status to be checked.

Return Parameters

  • completed: either 'true' if the operation completed successfully, or false if the operation is in progress. In case of 'false', the method will be called again, until either 'true' is received or an error occurs.
  • additionalfields (optional): supplementary data for further domain processing.

Mandatory

No

Example

function Example_GetNameserversStatus($params)
{
	$sld = $params["sld"];
	$tld = $params["tld"];
	$additionalfields = $params["additionalfields"];
	
	$ns1 = $params["ns1"];
	$ns2 = $params["ns2"];
	$ns3 = $params["ns3"];
	$ns4 = $params["ns4"];
	$ns5 = $params["ns5"];
	
	return array("completed" => true);
}
CloudBlue, an Ingram Micro business, uses cookies to improve the usability of our site. By continuing to use this site and/or logging in you are accepting the use of these cookies. For more information, visit our Privacy Policy.