Method: Echosign::Client#get_widget_form_data
- Defined in:
- lib/echosign/widget/client.rb
#get_widget_form_data(widget_id, file_path = nil) ⇒ String
Note:
SEEMINGLY NOT YET IMPLEMENTED SERVER-SIDE
Retrieves data entered by the user into interactive form fields at the time they signed the widget
114 115 116 117 118 119 120 121 122 |
# File 'lib/echosign/widget/client.rb', line 114 def (, file_path = nil) response = request(:get_widget_form_data, ) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end |