Sha256: eda7c14813fc3d917f9d86f2c5627ba2d9b09bf331e5cd517fd266ccb2369a89
Contents?: true
Size: 680 Bytes
Versions: 2
Compression:
Stored size: 680 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::SignatureRequestUpdateRequest.new data.email_address = "john@example.com" data.signature_id = "78caf2a1d01cd39cea2bc1cbb340dac3" signature_request_id = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f" begin result = api.signature_request_update(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/SignatureRequestUpdate.rb |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/SignatureRequestUpdate.rb |