Sha256: 44c61685d661b9c2d3676e52eaa395e684b570dac4b17c32451e9c3340cfa425
Contents?: true
Size: 595 Bytes
Versions: 2
Compression:
Stored size: 595 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::TemplateApi.new data = HelloSign::TemplateRemoveUserRequest.new data.email_address = "george@hellosign.com" template_id = "21f920ec2b7f4b6bb64d3ed79f26303843046536" begin result = api.template_remove_user(template_id, data) 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/TemplateRemoveUser.rb |
hellosign-ruby-sdk-6.0.0.pre.beta | oas/examples/TemplateRemoveUser.rb |