Sha256: 4a01142c50c08be002745181cb297faa6553c415fb826bef071b3bfaa710dfa3

Contents?: true

Size: 487 Bytes

Versions: 2

Compression:

Stored size: 487 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::BulkSendJobApi.new

page = 1
page_size = 20

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