We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa1681 commit 366d9d5Copy full SHA for 366d9d5
1 file changed
README.md
@@ -39,8 +39,11 @@ require 'connectwise-ruby-sdk'
39
# Setup authorization
40
Connectwise.configure do |config|
41
# Configure HTTP basic authorization: BasicAuth
42
- config.username = 'YOUR USERNAME'
43
- config.password = 'YOUR PASSWORD'
+ config.username = 'USERNAME' # in the form of company_id+public_api_key
+ config.password = 'PASSWORD' # private_api_key
44
+ config.host = 'URL' # your connectwise url
45
+ config.base_path = '/v4_6_release/apis/3.0'
46
+ config.scheme = 'https'
47
end
48
49
api_instance = Connectwise::AccountingBatchTransactionsApi.new
0 commit comments