CFC and iPhones

I think I have CFC's settlement completed. I did not have a way to complete the daily minimum for them because our settlement system is load based not date based. There is a way but the amount of work required to implement something they will rarely use is not justified.

Still having weird issues with notifications... I need to build a message Id trap to help PushBots troubleshoot it. It mostly seems to be an iPhone issue.

Now back to GeoTab. I need to create geofences and rules for those geofences.
Here is a JS rule example:
api.call("Add", {
 typeName : "Rule",
 entity : rule
 }, function (ruleId) {
 
 api.call("Get", {
 typeName : "Rule",
 search : {id: ruleId}
 }, function (r) {
 console.log("Added rule: ", r);
 }, function (error) {
 alert(error);
 });
 
 }, function (error) {
 alert(error);
});

Comments