.. module:: twilio.rest =========== Accounts =========== Managing Twilio accounts is straightforward. Update your own account information or create and manage multiple subaccounts. For more information, see the `Account REST Resource `_ documentation. Updating Account Information ---------------------------- Use the :meth:`Account.update` to modify one of your accounts. Right now the only valid attribute is :attr:`friendly_name`. .. code-block:: ruby require 'twilio-ruby' # To find these visit https://www.twilio.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Twilio::REST::Client.new account_sid, auth_token @account = @client.accounts.get(account_sid) @account.update({:friendly_name => "My Awesome Account"}) Creating Subaccounts ---------------------- Subaccounts are easy to make. .. code-block:: ruby require 'twilio-ruby' # To find these visit https://www.twilio.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Twilio::Rest::Client.new account_sid, auth_token @subaccount = @client.accounts.create({:name => "My Awesome SubAccount"}) Managing Subaccounts ------------------------- Say you have a subaccount for Client X with an account sid `AC123` .. code-block:: ruby require 'twilio-ruby' # To find these visit https://www.twilio.com/user/account account_sid = "ACXXXXXXXXXXXXXXXXX" auth_token = "YYYYYYYYYYYYYYYYYY" @client = Twilio::Rest::Client.new account_sid, auth_token # Client X's subaccount @subaccount = @client.accounts.get('AC123') Client X hasn't paid you recently, so let's suspend their account. .. code-block:: ruby @subaccount.update({:status => 'suspended'} If it was just a misunderstanding, reenable their account. .. code-block:: ruby @subaccount.update({:status => 'active'} Otherwise, close their account permanently. .. code-block:: ruby @subaccount.update({:status => 'closed'} .. warning:: This action can't be undone.