Sha256: ba2939222d8a374ac883f2d25d1463c0729068f6d34ffa1767e4b4fd37d53ce3
Contents?: true
Size: 528 Bytes
Versions: 12
Compression:
Stored size: 528 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 template_api = Dropbox::Sign::TemplateApi.new account_id = "f57db65d3f933b5316d398057a36176831451a35" begin result = template_api.template_list({account_id: account_id}) 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