DomainsResendContactValidation

Resend the validation e-mail to validate a contact per e-mail. When no validation procedure has started for this contact this function will start the procedure.

Input

Parameter Value Example value
contact_id ID of the contact.
Retrieve with DomainsListContacts.
Parameter is required
234234


Output

Parameter Value Example value
success command executed successfully 0 = error
1 = command executed successfully
command_response_message Error message
Only sent when value parameter success = 0
incorrect password


Example

<? require("class_versio_api.php"); unset($command); $command = array( "command" => "DomainsResendContactValidation", "contact_id" => "123" ); $api = new Versio_api(); $versio = $api->api_send( $command ); IF($versio['success']==0) { echo("Error occured. Error code: ".$versio['command_response_code'].". Error message: ".$versio['command_response_message'].""); } else { echo("E-mail succesfully sent."); } ?>