I’m receving a webhook with the JSON string:
{
"row": :{
"offline_conversion_date": "12/27/2022",
"gclid_value_first": "CjwKCAiA-dCcBhBQEiwAeWidtSTLlONJz_5fYxxgTKO-7M8dqKk7oadad5XwQl_1RysOBH7C7MtAkhoC6icQAvD_BwE",
}]
}
I want to extract “offline_conversion_date” and “gclid_value_first” separately.
I’ve tried a few JS and Extract Pattern options based on other posts but couldn’t quite crack it.
Any help is appreciated!