Customers
We are no longer updating this site. For user documentation, please go to User Docs. For developer documentation, please go to Developer Docs. If you have any questions or feedback, please submit a ticket.
Customers are at the core of Zaius. Customers are composed of fields that are typically grouped into one of two groups: attributes or identifiers.
Display Name | Field Name | Description |
First Name | first_name | |
Last Name | last_name | |
Gender | gender | Stored as M , F |
Time Zone | timezone | |
Image URL | image_url | |
Phone Number | phone | |
Primary Line | street1 | |
Secondary Line | street2 | |
City | city | |
State | state | |
ZIP / Postal Code | zip | |
Country | country |
Zaius utilizes Customer Identifiers (e.g.
emails
, vuids
, push_tokens
) to merge users together and determine which event is associated with which customer.Including one or more of these identifiers on an event identifies the user who performed the event and allows Zaius to merge users together when enough information becomes available.
Display Name | Field Name | Description |
Zaius ID | zaius_id | A unique, Zaius-generated identifier, that represents a customer |
Last Seen Email | email | The last seen email associated with this customer. |
Last Seen Cookie ID | vuid | Zaius' unique Cookie / Device ID, used on web and mobile to identify anonymous customers. |
Many apps / integrations (e.g. Shopify or Magento) create identifiers that map to an external system (e.g. Shopify ID) to allow for improved user resolution, troubleshooting, and transparency. Some examples:
Display Name | Description |
Last Seen Shopify ID (mystore) | shopify_mystore_id |
Last Seen Zendesk ID (mysupporteam) | zendesk_mysupportteam_id |
Every identifier is also stored as an array in the plural form (with a max of 25 for each identifier type).
For example, all the known emails for a customer are stored in the a field called Emails (
emails
) and Cookie ID are stored as vuids
. If you have an external database, data lake, or system (e.g. a point-of-sale system) that uses a unique identifier to track customers, Zaius supports the creation of Custom Identifiers to ensure that all known information about your customers is tracked and you're able to reconcile information within Zaius with the external data source.
Custom Identifiers are considered when merging customers together.
At this time, Custom Identifiers must be created by a member of the Zaius Customer Success team. Contact your CSM or Support via email or chat to learn more.
Zaius utilizes Customer Identifiers (e.g.
emails
, vuids
, push_tokens
) to merge users together and determine which event is associated with which customer.Including one or more of these identifiers on an event identifies the user who performed the event and allows Zaius to merge users together when enough information becomes available.
Identifiers are categorized into levels of confidence:
- High Confidence: Identifiers that when seen, are unlikely to be shared across customers and devices (e.g. Email, Phone Number, Shopify ID)
- I have high confidence that this identifier can be used to merge customers together
- Low Confidence: Identifiers that are likely to be shared across devices and cannot be confidently associated with one person when a conflict is detected (e.g. Cookie ID, Browser Push Token)
- I have low confidence that this identifier can be used to merge customers together
Your customers object looks like the following:
Zaius ID ( zaius_id ) | Emails ( emails ) | Cookie IDs ( vuids ) |
1 | A | |
2 | B |
You receive an event:
Event Type | Email ( email ) | Cookie ID ( vuid ) |
pageview | A |
This event seems to indicate that Jane is using a browser formerly associated with John. Because
Cookie ID
is a Low Confidence identifier, instead of merging these customer's together, we will move the Cookie to now associate it with Jane:Zaius ID ( zaius_id ) | Emails ( emails ) | Cookie IDs ( vuids ) |
1 | | |
2 | A, B |
If Zaius merged these customers together, then every single person that shared that computer would be merged into one. So as a safety measure, the
Cookie ID
was moved.Your customers object looks like the following:
Zaius ID ( zaius_id ) | Emails ( emails ) | Shopify IDs ( shopify_mystore_ids ) |
1 | ABC | |
2 | XYZ |
You receive an event:
Event Type | Email ( email ) | Shopify IDs ( shopify_mystore_ids ) |
pageview | ABC |
This event seems to indicate that John's Shopify account has a secondary email. Because
Shopify ID
is a High Confidence identifier, the customer records will be merged together:Zaius ID ( zaius_id ) | Emails ( emails ) | Shopify IDs ( shopify_mystore_ids ) |
1 | ABC, XYZ |
Last modified 8mo ago