Discussions
SuiteWorld is the largest annual gathering of the NetSuite community! It will be held in Las Vegas on October 6-9, 2025. Our customers and partners look forward to SuiteWorld every year as a place to hear the latest from NetSuite, get hands-on learning, and connect with each other. Register now!
Now, you can stay up-to-date with the latest discussions, helpful tips, and important announcements, all delivered straight to your inbox. Whether you’re looking to catch up on what you missed or just want a quick overview, our email digest has you covered. To learn more and to subscribe, click here.
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;