module Ramco::API::OptionSet
Public Instance Methods
get_option_set(params={})
click to toggle source
GetOptionSet Fetch the valid value/label pairs for the specified OptionSet
(what Ramco
calls a picklist)
Entity
= Name of entity being queried (ex: Contact) Attribute = Name of the attribute being queried (ex: PreferredPhone)
{“entity” => “Contact”, “attribute” => “PreferredPhone”}
Returns json
# File lib/ramco/api/option_set.rb, line 15 def get_option_set(params={}) params['operation'] = "GetOptionSet" request(connection, params) end