Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 462 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 462 Bytes

autotask_api

Ruby API wrapper for the Autotask WebService API

Sample code:

client = AutotaskAPI::Client.new do |c|
  c.basic_auth = ['[email protected]','mypassword']
  c.wsdl = 'https://webservices.autotask.net/atservices/1.5/atws.wsdl'
end

query = AutotaskAPI::QueryXML.new do |query|
  query.entity = 'contact'
  query.field = 'firstname'
  query.expression = 'Joe'
end

client.query query