Cory Weiner
08/07/2023, 1:29 PMrec = record.create({type: record.Type.CONTACT})
rec.setValue({fieldId: "firstname", value:"Test"})
rec.setValue({fieldId: "lastname", value:"Test"})
rec.setValue({fieldId: "company", value:20042})
rec.save()
Nathan L
08/07/2023, 2:36 PMNathan L
08/07/2023, 2:38 PMNathan L
08/07/2023, 2:39 PMYeah no, sorry. Individual = no contacts. One of NS's less inspired design choices...
Either arrange to have the customer be created as a Company (not individual), or you can custom create a custom record to tie contacts to Customers. Keep in mind this will have none of the native functionality, it'll just be a raw association.
Selcuk Dogru
08/08/2023, 7:43 AM