Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Creating a contact record
Hi,
We are trying to create a C# app to create a new lead, and the corresponding contact record. We have the customer record being created successfully, but are running into some "typing" issues with the contact record relative to their documentation (we were referencing their online documentation for a while, then found the PDF, and realized the HTML docs were a bit out of date).
Anyway, we are creating a contact record like this:
// create a contact record
Contact contact = new Contact();
contact.comments = "comments";
contact.email = "jasen@hotmail.com";
contact.firstName = "test";
contact.lastName = "contact";
contact.phone = "4 44 444444";
contact.unsubscribe = false;