Sha256: 5b718cc4436a6f9c83ddfae538287999d0bb8ddadf0b3cb117f91d2deb4de10b
Contents?: true
Size: 441 Bytes
Versions: 4
Compression:
Stored size: 441 Bytes
Contents
require "dropbox-sign" Dropbox::Sign.configure do |config| # Configure HTTP basic authorization: api_key config.username = "YOUR_API_KEY" end fax_line_api = Dropbox::Sign::FaxLineApi.new data = Dropbox::Sign::FaxLineCreateRequest.new data.area_code = 209 data.country = "US" begin result = fax_line_api.fax_line_create(data) p result rescue Dropbox::Sign::ApiError => e puts "Exception when calling Dropbox Sign API: #{e}" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
dropbox-sign-1.8.0 | examples/FaxLineCreate.rb |
dropbox-sign-1.7.0 | examples/FaxLineCreate.rb |
dropbox-sign-1.6.1 | examples/FaxLineCreate.rb |
dropbox-sign-1.6.0 | examples/FaxLineCreate.rb |