Method: Mandrill::Subaccounts#update
- Defined in:
- lib/mandrill/api.rb
#update(id, name = nil, notes = nil, custom_quota = nil) ⇒ Hash
Update an existing subaccount
1540 1541 1542 1543 |
# File 'lib/mandrill/api.rb', line 1540 def update(id, name=nil, notes=nil, custom_quota=nil) _params = {:id => id, :name => name, :notes => notes, :custom_quota => custom_quota} return @master.call 'subaccounts/update', _params end |