Allows you to add a new contact entry. Requires a Synergy Account ID.
Example usage:
this.controller.serviceRequest('palm://com.palm.contacts/crud', {
method: 'createContact',
parameters: {
accountId: this.accountId,
contact: {
firstName: "Ken",
lastName: "Young",
companyName: "www.webOSHelp.net",
nickname: "webOS Newb"
}
},
onSuccess: this.successEvent.bind(this),
onFailure: this.failureHandler.bind(this)
});