module Synapsis::APIOperations::Show
Public Instance Methods
show(params)
click to toggle source
# File lib/synapsis_v3/api_operations/show.rb, line 2 def show(params) response = show_request(params) return_response(response) end
show_request(params)
click to toggle source
# File lib/synapsis_v3/api_operations/show.rb, line 7 def show_request(params) request(:post, show_url, params) end
show_url()
click to toggle source
# File lib/synapsis_v3/api_operations/show.rb, line 11 def show_url "#{API_V3_PATH}#{class_name}/show" end