Method: HelloSign::Client#delete
- Defined in:
- lib/hello_sign/client.rb
#delete(path, options = {}) ⇒ Object
Make an HTTP DELETE request
127 128 129 130 131 132 |
# File 'lib/hello_sign/client.rb', line 127 def delete(path, ={}) response = request(path, :delete, ) validate response parsed_response = parse response data = { headers: response.headers, body: parsed_response } end |