Hello, I keep getting an error that there is no parameter in the module that creates an event in Google Calendar.
Data is received normally through webhooks. However, I am curious about how to set it up for reference when creating a Google Calendar.
I tried {{summary}} {{1.value.summary}} {{value.summary}, but it doesn’t work.
1 Like
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! 
2 Likes
Hi @bugerboy1230
You need to parse the data from webhook using parse json module and map “value” from webhoook into parse json module. Then you will be able to map everything from json module.
Regards,
Msquare Automation - Platinum Partner of Make
@Msquare_Automation
2 Likes
thank you so much!!! it works!!!
1 Like
Glad to know @bugerboy1230
Regards,
Msquare Automation - Platinum Partner of Make
@Msquare_Automation