Contact created without the label

Hi,

Trying to add a contact with a label.
Contact is created, but without the label.

Code:
=====
export function button1_click(event, $w) {
let contactInfo = {
“firstName”:“first1”,
“lastName”:“last1”,
“emails”:[“a@a.com”],
“phones”:[“111111”],
“labels”:[“label1”]
};

wixCRM.createContact(contactInfo) 
    .then((contactId) => { 
        console.log("contact created"); 
    }) 
    . **catch** ((err) => { 
        console.log(err); 
    }); 

}

Console.log
=========

CRM
====

Active labels
=========

Thanks a lot,
Dafna

Thanks for your feedback Dafna.
we are looking into it.

Thanks! waiting for info:)

fixed. please confirm

It’s ok now:) Many thanks!!!

Hi,
it doesn’t work at this site: https://arip1812.wixsite.com
and it does work in my test site
can you plesae check???
Thanks a lot:)

This is what I get in the 2nd site:

Hi Dafna,
It seems that you are trying to create a contact for an email (or phone) used by a registered user.
We can not create a contact with an existing registered user email because of security reasons.
i.e if a user registered to the site with email a@a.com, creating a contact with the same email results with the above exception.

hope that was helpful.

Hi,
The main problem is that since it’s imposibble to re-create a contact, the emailContact() won’t work.
e.g. if a buyer is purchasing a product, he can get an email, but the supplier can’t.
The API says that createContact() is for add/update, but actually it’s only for add.
The createContact() issue doesn’t allow to add labels after 1st registration to CRM.
Thanks!