The Contacts API allows you to create and manage contacts. When a new visitor first shares their contact information with a site, they're added to the site's contact list. You can then access contacts and their details using the Contacts API.
A site visitor becomes a contact when:
Learn more about how Wix users can manage a site's contact list.
With the Contacts API, you can:
It's important to note the following points before starting to code:
To use the Contacts API, install the @wix/crm
package using npm or Yarn:
or
Then import { contacts }
from @wix/crm
:
Creates a new contact.
The info
object must include at least one of the following:
By default, if the call contains an email already in use by another contact,
the new contact won't be created. To override this behavior, set allowDuplicates
to true
.
Contact info.
Create contact options.
There are 3 errors with this status code.
There are 2 errors with this status code.
This method may also return standard errors. Learn more about standard Wix errors.
Deletes a contact.
Deleting a contact permanently removes it from the contact list. If a contact is also a site member or Wix user, or has a valid billing subscription, the contact can't be deleted. The related site member or Wix user must first be deleted and any valid billing subscriptions must be canceled, before the contact can be deleted.
Members are typically linked to contacts, and while they share a relationship, the member ID and contact ID are distinct identifiers. Make sure to specify the contact ID when calling Delete Contact.
ID of the contact to delete.
There are 3 errors with this status code.
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.
Retrieves a contact.
When a source contact is merged with a target contact, the source contact is deleted. When calling Get Contact for a merged contact, you can use the source or target contact ID. In both bases, the target contact is returned.
This is supported only when calling Get Contact on merged contacts. Previously deleted source contact IDs can't be used for any other method.
ID of the contact to retrieve.
Get contact options.
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.
Adds labels to a contact.
Use the Labels API to create or retrieve labels.
Members are typically linked to contacts, and while they share a relationship, the member ID and contact ID are distinct identifiers. Make sure to specify the contact ID when calling Label Contact.
ID of the contact to add labels to.
List of label keys to add to the contact.
Label keys must exist to be added to the contact. Use the Labels API to create or retrieve labels.
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.