Sha256: 7cbd1d9aa0ac48075f56451f7f4fcfc57f3295f3dbca7c41a0e661de8768d23e
Contents?: true
Size: 524 Bytes
Versions: 12
Compression:
Stored size: 524 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
12 entries across 12 versions & 1 rubygems