DomainsListInactive

List inactive domains.

Input

None

Output

Parameter Value Example value
success command executed successfully 0 = error
1 = command executed successfully
command_response_message Error
Only sent when value parameter success = 0
incorrect password
total_count Total amount inactive domains
Only sent when value parameter success = 1
20
id_X Domain id.
The X runs from 1 to the value of total_count
Only sent when value parameter success = 1
45221
domain_X Domain without extension.
Eg "versio.uk" will return "versio".
The X runs from 1 to the value of total_count
Only sent when value parameter success = 1
versio
tld_X Domain extension.
Eg "versio.uk" will return "uk".
The X runs from 1 to the value of total_count
Only sent when value parameter success = 1
nl
auto_renew_X Domain auto renew.
The X runs from 1 to the value of total_count
Only sent when value parameter success = 1
1 = On
0 = Off


Example

<? require("class_versio_api.php"); unset($command); $command = array( "command" => "DomainsListInactive" ); $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 { IF($versio['total_count']>0) { ?> <table> <? $teller = 1; while($versio['total_count']>=$teller) { ?> <tr> <td><? echo $versio['id_'.$teller]; ?></td> <td><? echo $versio['domain_'.$teller]; ?></td> <td><? echo $versio['tld_'.$teller]; ?></td> <td><? echo $versio['auto_renew_'.$teller]; ?></td> </tr> <? $teller++; } ?> </table> <? } else { echo("No inactive domains in your account."); } } ?>