Skip to content
FacebookYouTubeX (Twitter)

How Pingstreams manages Contacts and Leads with its CRM

Actually Leads and Contacts are synonyms. We use the term “Lead” in developer docs while we use “Contact” in the UI.

A Contact aggregates requests and metadata collected during conversation(s) with a single user (Anonymous or Authenticated, see next Section).

Example of collected metadata:

  • Fullname
  • Last name
  • Email
  • Custom metadata

In general, if the user is connected as “Anonymous” a Lead is created automatically based on the user-id (the user-id is a random generated UUID during the anonymous authentication process). All next user conversations with this UUID will be aggregated in a single Lead.

When a user first starts a conversation from a browser instance (i.e. Google Chrome) he will be asked for some metadata to follow up a conversation:

User starting conversation with metadata form

Then the user contacts the support another time, as you can see by conversations summary:

Conversation summary showing multiple interactions

Now in Contacts module you can search by email for the Lead:

Contacts search interface

As you can see there is only one Contact with that email. Now in contact detail you can see all the two requests made by this user:

Contact detail view showing all requests

If the user, with the same email, starts a request from another browser he will be assigned a new Anonymous user-id.

So, for example, if you start a new request from Safari (we started with Chrome browser):

New conversation from Safari browser

As you can see the user is totally new (a new Anonymous user is created with a new UUID).

Now we insert the same email as in Chrome:

Same email entered in Safari

If we execute the same search as before, by email:

Search results showing two contacts

Now I find two Contacts, because they have a different UUID as you can see in the detail of the new Contact:

Second contact detail with different UUID

And this new user only made one conversation.

Actually we do not provide a feature to “merge” the two contacts into one (they are effectively the same user, recognized by their identical email, despite the two Contacts have different user-ids). This feature, with the ability to manually create and modify Contacts, is in our roadmap.