Hi,to complete kapscool's response, I don't think you get the rowid but
THE (recipient) id with his methodvar recipient= nms.recipient.create(
);recipient.save();logInfo(" Id of latest recipient added is "+
recipient["id"]);You can also use the NLWS create method (doc) :var
recipient= NLWS.nmsRecipient.create( {recipient: { lastName: "Martinez",
firstName: "Peter" }});recipient.save();logInfo(" Id of latest recipient
added is " + recipient.id);Kind regards,Pierre