User Informations and Airtable Integrations
⠀
Look at the picture. Before that I collect the user's name, surname, e-mail and phone number.
⠀
My goal is to recognise if the user is already in my Airtable list via record_id. If the user is already in the list, they get a "NoReview" tag and are not added to the list as a new contact.
⠀
If the user is not in the list, they are added as a new contact.
⠀
However, the system receives and processes the user's data in curly brackets. Therefore, it does not match the person in the list and is added as a new contact.
⠀
For example,
⠀
First name: David
Last Name: Beckham
Phone: +1-123-123-1234
Mail: davidbeckham@gmail.com
⠀
This person is on my list. I pretend to be the same person and give this data to the system. But the system processes them like this:
⠀
First name: {David}
Last Name: {Beckham}
Phone: {+1-123-123-1234}
Mail: {davidbeckham@gmail.com}
⠀
I tried to fix the problem with javascript codes, but it doesn't work. Can you help me fix this problem?
⠀
I can provide more details if needed.

