This library intends to provide a simple interface for the rest api of sugarcrm.
The development of the library was sponsored by the Wegtam UG.
The source of this library is released under the BSD license (see LICENSE for details).
- Scala 2.10 or 2.11
- Argonaut
- Apache Http Components
See the build.sbt file for details.
val sugar = new Connection(new URL("http://crm.example.com/sugarcrm"), "user", "password")
val entries = sugar.getEntries("Accounts", """accounts.name LIKE "%mining%"""")
Start sbt specifying the connection details to a test sugarcrm installation e.g.:
sbt -Durl="http://sugarcrm.company.co.uk" -Dusername=User -Dpassword=password