Best answer

CapsuleCRM - Find or create new contact

  • 26 April 2021
  • 7 replies
  • 109 views

Userlevel 1

Hi Community, 

I have a question regarding Capsule CRM and Zapier posibilities. I have a google form where input will be added to CapsuleCRM. But some organisations I work with have one email address used by the whole team (but different first and last names in google form). 

So now, Zapier only checks on email in my case (most safe usually). How to overcome that a new contact with same email address will not be seen as an already existing contact?

I have attached the action. 

Hope some of you recognize my issue! 

Thanks in advance for your support!

David

 

icon

Best answer by Troy Tessalone 27 April 2021, 00:53

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

7 replies

Userlevel 7
Badge +14

Hi @zappedavid 

You may have to add some conditional logic to your Zap such as this…

If Find Contact = TRUE, then compare the First Name and Last Name

If Name does not match, then Create Contact in Capsule.

Userlevel 1

Hi Troy, 

Thank you for your quick reply. Where can I find conditional logic? and where would I need to add it (within the action?).

Thanks again! much appreciated!

David

Userlevel 7
Badge +14

@zappedavid 

You’d have to define the conditional logic then structure your Zap in a way to handles the different use cases.

 

Some Zap app options include…

Filters

Paths

Formatter > Math > Perform Spreadsheet Style Formula

Code (JavaScript or Python)

 

NOTE: It may take a few of these apps to achieve these desired conditional logic within your Zap(s).

Userlevel 1

Thank you for your options. 

Since Im a beginner with Zapier I would like to ask what conditions would suit my case?

 

Google form retrieves email address and first and last name into row of spreadsheet. Then within Capsule I check if email already exists → then no new contact. But in this case the team of the organisation uses one e-mail address for all team members. So I need to let capsule know that when email address exists, but when with a name in row of spreadsheet which does not exist, then new contact. 

...well...if you have some ideas how to tackle this one, I have tried filter/paths/formatter (coding will not be a succes!) but I dont see an option to make the condition to check on email address AND name. 

 

Regards,

David

Userlevel 7
Badge +14

@zappedavid

Might be best to start by listing out your different use cases that Zaps will need to handle with conditional logic.

For example

  1. Email = Exists AND Name = Exists
    1. Update Contact (?)
  2. Email = Exists AND Name = New
    1. Create Contact
  3. Email = New
    1. Create Contact

 

You can try structuring this via nested Paths.

  1. Email = Exists
    1. Name = Exists
      1. Update Contact (?)
    2. Name = New
      1. Create Contact
  2. Email = New
    1. Create Contact
Userlevel 1

PS, I found an addendum :)

Choose false if you want subsequent steps to always be skipped when nothing is found. This is the most common case. The true option is used for greater control with filters and paths. If true, we will consider a "not found" result from this search step as a "success" and will always run subsequent Filter or Paths steps, allowing them to branch on whether or not the search returned a result.

 

So is my thinking correct: so first find emailaddress, then (path step) check again for name and if not true then add contact…?

Userlevel 1

I'll spend another day at soon! Thanks Troy. Much appreciated! 
Hope I'll get the hang of this Zapier zapping :) its brilliant...once you get it ;)