Module: Castle::API::Lists::GetAll

Defined in:
lib/castle/api/lists/get_all.rb

Overview

Sends GET /lists request

Class Method Summary collapse

Class Method Details

.call(options = {}) ⇒ Hash

Parameters:

  • options (Hash) (defaults to: {})

Returns:

  • (Hash)


11
12
13
14
15
16
17
# File 'lib/castle/api/lists/get_all.rb', line 11

def call(options = {})
  options = Castle::Utils::DeepSymbolizeKeys.call(options || {})
  http = options.delete(:http)
  config = options.delete(:config) || Castle.config

  Castle::API.call(Castle::Commands::Lists::GetAll.build, {}, http, config)
end