Method: HelloSign::Client#delete
- Defined in:
- lib/hello_sign/client.rb
#delete(path, options = {}) ⇒ Object
Makes an HTTP DELETE request
121 122 123 124 125 126 |
# File 'lib/hello_sign/client.rb', line 121 def delete(path, ={}) response = request(path, :delete, ) validate response parsed_response = parse response data = { headers: response.headers, body: parsed_response } end |