Method: Morpheus::UserSourcesInterface#list
- Defined in:
- lib/morpheus/api/user_sources_interface.rb
#list(account_id, options = {}) ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/morpheus/api/user_sources_interface.rb', line 13 def list(account_id, ={}) url = build_url(account_id) headers = { params: {}, authorization: "Bearer #{@access_token}" } headers[:params].merge!() opts = {method: :get, url: url, timeout: 10, headers: headers} execute(opts) end |