lib/hello_sign/api/signature_request.rb in hellosign-ruby-sdk-3.5.0 vs lib/hello_sign/api/signature_request.rb in hellosign-ruby-sdk-3.5.1
- old
+ new
@@ -119,10 +119,11 @@
#
def send_signature_request(opts)
prepare_files opts
prepare_signers opts
+ prepare_form_fields opts
HelloSign::Resource::SignatureRequest.new post('/signature_request/send', :body => opts)
end
#
@@ -319,9 +320,10 @@
#
def create_embedded_signature_request(opts)
opts[:client_id] ||= self.client_id
prepare_files opts
prepare_signers opts
+ prepare_form_fields opts
HelloSign::Resource::SignatureRequest.new post('/signature_request/create_embedded', :body => opts)
end
#