Sha256: 9ad37309bd5e306c46375b2f5d640228ac0bfe4721c36265ede7b582817821ca

Contents?: true

Size: 477 Bytes

Versions: 2

Compression:

Stored size: 477 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::ApiAppApi.new

page = 1
page_size = 2

begin
  result = api.api_app_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/ApiAppList.rb
hellosign-ruby-sdk-6.0.0.pre.beta oas/examples/ApiAppList.rb