I have created custom field in contact list CRM. When i used to insert data it is working fine contact created with custom field value.
However i create contact on live site. Contact is created but custom field remain empty without value.
Any response in highly appreciated. Thanks
export function button2_click(event) {
const contactInfo = {
firstName: ‘x’ ,
lastName: ‘y’ ,
emails: [ ‘ab@gmail.com’ ],
‘Branch’ :‘xyz’
}
wixCrm.createContact( contactInfo )
.then( (contactId) => {
// contact created
console.log(contactId)
} );
}