Kris Jones
03/05/2019, 5:56 PMentitystatus
field, which is a SELECT type field...
looked up the correct customer status id that I want to set, it's 17
...
yet the following errors out with `Invalid Field Value 17 for Field entitystatus`:
const newCustomerRecord = record.create({
type: record.Type.CUSTOMER,
isDynamic: true
});
newCustomerRecord.setValue({
fieldId: "entitystatus",
value: "17"
});
any ideas?