Meteor wrapper for the Act! Web API
Act! Web API is a RESTful, JSON based API for Act! Premium - Windows, Web, or Cloud. This wrapper provides a 'Meteor-ized' interface for interacting with the Act! Web API.
API Documentation
Act! Premium Web API Documentation
Wrapper Documentation
Installation
meteor add chrisbutler:act.web.api
Example Usage
In settings.json
:
"act": {
"username": "<ActUser>",
"password": "<UserPassword>",
"database": "<DatabaseName>",
"endpoint": "<ApiURL>"
}
On the server:
import { ActWebAPI } from 'meteor/chrisbutler:act.web.api';
var act = new ActWebAPI();
var contact = act.contacts('findOne', {id: '<contactId>'});