i need help with Kinvey Business logic. I want to save a new object using javascript in Business login(back-end side) but I can't find an example nowhere. I tried this, but doesn't work:
var model = new Kinvey.Backbone.Model({}, {
url: 'Notifications'
});
var promise = model.save({}, {
success: function(model, response, options) {
logger.info("bam");
}
});
If anyone has examples of saving objects on normal Collections and on User collections I would appreciate very much. Thank you.