Method: Whmcs::Module.module_terminate

Defined in:
lib/whmcs/module.rb

.module_terminate(params = {}) ⇒ Object

Run the module terminate command

Parameters:

  • :accountid - the unique id number of the account in the tblhosting table

See:

wiki.whmcs.com/API:Module_Terminate



57
58
59
60
# File 'lib/whmcs/module.rb', line 57

def self.module_terminate(params = {})
  params.merge!(:action => 'moduleterminate')
  send_request(params)
end