Deprecated. This function will continue to work, but a newer version is available at wix-crm-backend.contacts.updateContact().
Updates an existing contact.
If this function is already in your code, it will continue to work.
To stay compatible with future changes, migrate to
wix-crm-backend.contacts.updatecontact()
.
To migrate to the new function:
Add the new import statement:
If you plan to migrate all contact functions that use wixCrmBackend
,
remove the original import wixCrmBackend
statement.
Look for any code that uses wixCrmBackend.updateContact()
,
and replace it with contacts.updateContact()
.
Update your code to work with the new updateContact()
call and response properties.
Test your changes to make sure your code behaves as expected.
The updateContact()
function returns a Promise that resolves when the
contact with the specified ID has been updated.
Only the properties passed in the ContactInfo
object will
be updated. All other properties will remain the same.
The ID of the contact to update.
The information to update.