This question is locked. New answers and comments are not allowed.
I need to update Content in the back-end inside a Cloud Code Function. Inside the Cloud Code Function, do I need to create the Everlive object as normal or are there other (preferred) ways of doing it?
var el = new Everlive('your-api-key-here');var data = el.data('Books');data.create({ 'Author' : 'Harper Lee' }, function(data){ alert(JSON.stringify(data)); }, function(error){ alert(JSON.stringify(error)); });