Method: Whmcs::Module.module_unsuspend

Defined in:
lib/whmcs/module.rb

.module_unsuspend(params = {}) ⇒ Object

Run the module unsuspend command

Parameters:

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

See:

wiki.whmcs.com/API:Module_Unsuspend



43
44
45
46
# File 'lib/whmcs/module.rb', line 43

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