This repository was archived by the owner on Oct 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ def bulk_send_with_template(opts)
341341 # :email_address: 'john@example.com'
342342 # )
343343 def remind_signature_request ( opts )
344- HelloSign ::Resource ::SignatureRequest . new post ( ' /signature_request/remind/#{opts[:signature_request_id]}' , body : opts )
344+ HelloSign ::Resource ::SignatureRequest . new post ( " /signature_request/remind/#{ opts [ :signature_request_id ] } " , body : opts )
345345 end
346346
347347 # Cancels an incomplete SignatureRequest.
@@ -352,7 +352,7 @@ def remind_signature_request(opts)
352352 # @example
353353 # @client.cancel_signature_request signature_request_id: '75cdf7dc8b323d43b347e4a3614d1f822bd09491'
354354 def cancel_signature_request ( opts )
355- post ( ' /signature_request/cancel/#{opts[:signature_request_id]}' , body : opts )
355+ post ( " /signature_request/cancel/#{ opts [ :signature_request_id ] } " , body : opts )
356356 end
357357
358358 # Removes your access to a completed a SignatureRequest.
@@ -363,7 +363,7 @@ def cancel_signature_request(opts)
363363 # @example
364364 # @client.remove_signature_request signature_request_id: '75cdf7dc8b323d43b347e4a3614d1f822bd09491'
365365 def remove_signature_request ( opts )
366- post ( ' /signature_request/remove/#{opts[:signature_request_id]}' , body : opts )
366+ post ( " /signature_request/remove/#{ opts [ :signature_request_id ] } " , body : opts )
367367 end
368368
369369 # Downloads a copy of the SignatureRequest documents.
You can’t perform that action at this time.
0 commit comments