Sha256: 44c07f139f078d692557efbea2ec9ad4aad15e13f959e3079b3b1a654cfac67e

Contents?: true

Size: 501 Bytes

Versions: 2

Compression:

Stored size: 501 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

account_id = null
page = 1

begin
  result = api.signature_request_list({account_id: account_id, page: page})
  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/SignatureRequestList.rb
hellosign-ruby-sdk-6.0.0.pre.beta oas/examples/SignatureRequestList.rb