Method: ZAWS::Sumoapi::SumoClient#post

Defined in:
lib/zaws/external/sumoapi/sumo_client.rb

#post(path, body, options = {}) ⇒ Object

Make a POST request expecting a JSON response.



28
29
30
31
# File 'lib/zaws/external/sumoapi/sumo_client.rb', line 28

def post(path, body, options = {})
  options[:body] = body
  json_request('POST', path, options)
end