module NSOne::API::Account

Public Instance Methods

account() click to toggle source

Returns the basic contact details associated with your account

@return [NSOne::Response]

# File lib/nsone/api/account.rb, line 12
def account()
  perform_request(HTTP_GET, "/account/settings")
end
account_overage() click to toggle source

Returns toggles and thresholds used when sending overage warning

@return [NSOne::Response]

# File lib/nsone/api/account.rb, line 21
def account_overage()
  perform_request(HTTP_GET, "/account/usagewarnings")
end
billataglance() click to toggle source
# File lib/nsone/api/account.rb, line 29
def billataglance
  perform_request(HTTP_GET, "/account/billataglance")
end
plan() click to toggle source
# File lib/nsone/api/account.rb, line 25
def plan
  perform_request(HTTP_GET, "/account/plan")
end