Sha256: 3cb908f411fcd6fc0b1424068835f04695e2f2f307496eb4aa9ad248e8324dd6

Contents?: true

Size: 526 Bytes

Versions: 3

Compression:

Stored size: 526 Bytes

Contents

require "dropbox-sign"

Dropbox::Sign.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

bulk_send_job_api = Dropbox::Sign::BulkSendJobApi.new

page = 1
page_size = 20

begin
  result = bulk_send_job_api.bulk_send_job_list({ page: page, page_size: page_size })
  p result
rescue Dropbox::Sign::ApiError => e
  puts "Exception when calling Dropbox Sign API: #{e}"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dropbox-sign-1.8.0 examples/BulkSendJobList.rb
dropbox-sign-1.7.0 examples/BulkSendJobList.rb
dropbox-sign-1.6.1 examples/BulkSendJobList.rb