Method: HelloSign::Client#put

Defined in:
lib/hello_sign/client.rb

#put(path, options = {}) ⇒ Object

Make a http put request

Parameters:

  • path (String)

    relative path of the request

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • params (Hash)

    params of the url

  • body (Hash)

    request body



86
87
88
89
90
# File 'lib/hello_sign/client.rb', line 86

def put(path, options={})
  response = request(path, :put, options)
  validate response
  parse response
end