Method: NVX::SDS::MasterAccount#SetAccountNotes
- Defined in:
- lib/nvx/sds/masteraccount.rb
#SetAccountNotes(username, xml_notes) ⇒ Object
Set the account notes. This method expects properly formated xml. Be sure to escape any invalid characters.
88 89 90 91 92 |
# File 'lib/nvx/sds/masteraccount.rb', line 88 def SetAccountNotes(username, xml_notes) params = [APIParam.new("username", username), APIParam.new("xmlNotes", xml_notes)] Transport.execute_command_post(APICommand.SetAccountNotes, params, @account_login) end |