As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi Mark,
Please try replacing
logger.info(obj._id); // exception here
with
logger.info(visitor._id);
Let me if this helps.
Regards,
Wani
Mark Thien
Hi Guys,
Is there anywhere I can get the entity _id after saving it?
var visitor = modules.kinvey.entity();
visitor.name = request.body.name;
visitor.phone = request.body.phone;
visitor.email = request.body.email;
modules.collectionAccess.collection('visitor').save(visitor, function (err, obj) {
logger.info(obj._id); // exception here
});
regards,
Mark Thien