Hi everyone,
I receive some data to a custom webhook. The structure is the following
[
{
"lead_id": "TeSter-123-ABCDEFGHIJKLMNOPQRSTUVWXYZ-abcdefghijklmnopqrstuvwxyz-0123456789-AaBbCcDdEeFfGgHhIiJjKkLl",
"user_column_data": [
{
"column_name": "User Phone",
"string_value": "+16505550123",
"column_id": "PHONE_NUMBER"
},
{
"column_name": "Postal Code",
"string_value": "94043",
"column_id": "POSTAL_CODE"
},
{
"column_name": "User Email",
"string_value": "test@example.com",
"column_id": "EMAIL"
},
{
"column_name": "First Name",
"string_value": "PrĂŠnom",
"column_id": "FIRST_NAME"
},
{
"column_name": "Last Name",
"string_value": "Nom",
"column_id": "LAST_NAME"
}
],
"api_version": "1.0",
"form_id": 174926342406,
"campaign_id": 21754229026,
"google_key": "installateur_pac",
"is_test": true,
"gcl_id": "TeSter-123-ABCDEFGHIJKLMNOPQRSTUVWXYZ-abcdefghijklmnopqrstuvwxyz-0123456789-AaBbCcDdEeFfGgHhIiJjKkLl",
"adgroup_id": 20000000000,
"creative_id": 30000000000
}
]
As you see, I have 5 collections nested in one array, itself nested in the Bundle 1 collection.
Nevertheless, I want to put the data from this webhook to my CRM. I tried to use several modules but I believe I am not using them correctly or not the right ones.
Indeed, the only data I manage to pull are the one from the user_column_data[5]
I would appreciate any help on the matter.
Cheers