Hello @bugerboy1230,
There are a couple of ways to do this.
Parse JSON → get()
function
First, convert your webhook payload bundle 1 values from string json to array and collections.
Then get specific data using the get()
function like {{get(data;key)
Read more about GET
and MAP
https://academy.make.com/courses/IntermediateC02
https://www.make.com/en/help/functions/general-functions#get--object-or-array--path-
https://www.make.com/en/help/functions/array-functions#map-complex-array--key--key-for-filtering---possible-values-for-filtering-separated-by-a-comma--
replace()
with Regular Expression
Right now your value element within Bundle 1 is considered a string.
So you can use the replace
function to get specific values from it using different sets of Regular Expressions for different values.
Read more about https://www.make.com/en/help/functions/string-functions#replace--text--search-string--replacement-string-
If you go with this approach then also read this topic fully by all the different replays. There are multiple approaches are added.
How can I extract these 6 items from a body of a text into mappable fields?
I recommend you to go with the Parse JSON → get()
function approach because you’ve json format.
P.S.: Always search first, Check Make Academy. If this is helpful, Mark Best Answers as Solutions
and give
If you need expert help or have questions? Contact or comment below!