Method: Whmcs::Client.get_clients_details

Defined in:
lib/whmcs/client.rb

.get_clients_details(params = {}) ⇒ Object

Get a client’s info

Parameters:

  • :clientid - the id number of the client

  • :email - the email address of the client

See:

wiki.whmcs.com/API:Get_Clients_Details



115
116
117
118
# File 'lib/whmcs/client.rb', line 115

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