Module: Surveygizmo::Request
- Included in:
- API
- Defined in:
- lib/surveygizmo/request.rb
Overview
Defines HTTP request methods
Instance Method Summary collapse
-
#get(path, options = {}) ⇒ Object
Perform an HTTP GET request.
- #post(path, options = {}, temp_api_endpoint = nil) ⇒ Object
Instance Method Details
#get(path, options = {}) ⇒ Object
Perform an HTTP GET request
6 7 8 |
# File 'lib/surveygizmo/request.rb', line 6 def get(path, ={}) request(:get, path, ) end |
#post(path, options = {}, temp_api_endpoint = nil) ⇒ Object
10 11 12 |
# File 'lib/surveygizmo/request.rb', line 10 def post(path, ={}, temp_api_endpoint=nil) request(:post, path, , temp_api_endpoint) end |