RenewSync
%Plugin_Name%_RenewSync
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 the 'false
', the method must be called again, until either 'true
' is received or an error occurs.expirydate
(optional): the domain expiration date.additionalfields
(optional): the supplementary data for further domain processing.
Mandatory
No
Example
function Example_RenewDomain($params) { $sld = $params["sld"]; $tld = $params["tld"]; $additionalfields = $params["additionalfields"]; $period = $params["regperiod"]; }