Method: HelloSign::Client#put
- Defined in:
- lib/hello_sign/client.rb
#put(path, options = {}) ⇒ Object
Makes an HTTP PUT request
115 116 117 118 119 120 |
# File 'lib/hello_sign/client.rb', line 115 def put(path, ={}) response = request(path, :put, ) validate response responsed_response = parse response data = { headers: response.headers, body: parsed_response } end |