Sha256: ad1e30a4c5ac1f33747d163738a1887dd09c931524d10375ea01b8e33b62008d
Contents?: true
Size: 625 Bytes
Versions: 2
Compression:
Stored size: 625 Bytes
Contents
require "hellosign-ruby-sdk" HelloSign.configure do |config| # Configure HTTP basic authorization: api_key config.username = "YOUR_API_KEY" # or, configure Bearer (JWT) authorization: oauth2 # config.access_token = "YOUR_ACCESS_TOKEN" end api = HelloSign::SignatureRequestApi.new data = HelloSign::SignatureRequestRemindRequest.new data.email_address = "john@example.com" signature_request_id = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f" begin result = api.signature_request_remind(signature_request_id, data) p result rescue HelloSign::ApiError => e puts "Exception when calling HelloSign API: #{e}" end
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hellosign-ruby-sdk-6.0.0.pre.beta | examples/SignatureRequestRemind.rb |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/SignatureRequestRemind.rb |