RequestDeleteSync
%Plugin_Name%_RequestDeleteSync
Purpose
Use this function to check the status of domain renewal.
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.
Return Parameters
completed
: either 'true
' if the operation successfully completed, orfalse
if the operation is in progress. In case of 'false
', the method must be called again, until either 'true
' is received or an error occurs.
Mandatory
No
Example
function Example_RequestDeleteSync($params) { $sld = $params["sld"]; $tld = $params["tld"]; $additionalfields = $params["additionalfields"]; array("completed" => true); }