What is your goal?
I want to call and retrieve an output Webhook bundle into a another scenario (look the attached screenshot)
What is the problem & what have you tried?
I tried to use Make “List scenario logs” module but I didn’t get the starting bundle.
I might save the bundle into a data store but does it exist a way without saving it? I just need to reuse the bundle once to get some info
Screenshots (scenario flow, module settings, errors)
Hello Garry_V
I still did recommend the use of previous bundles cause it is easy and better just check around the time you last run that particular scenario
You can do that by setting the Webhook “JSON Pass-through” to YES (it is “No” by default), when creating or editing a webhook.
Then, you will be able to map the entire JSON body payload in another module.
Alternatively, you can just map this variable:
— @samliew
Sorry @Bolex_creatives, I didn’t understand your answer.
@samliew I’m not sure that is exactly what I’m trying to do, here a better explanation :
No, you need to save it somewhere to be able to access it in a different scenario.
But why? Just send the webhook to the other scenario as well, why are you complicating it like that?
Ok, thank you. It’s because I need to get the data in 2 times, depending on a human action.
At the end of the scenario A, a human is launching the scenario B by clicking on a button (call-to-action). Then, I’m trying to retrieve the data in this scenario B.
I really thought that variables like executionId or runId meant that data was already saved somewhere in Make.


It’s saved in the execution history, but I don’t think you can access it via the API. Best bet is to save the raw JSON in a data store and pull it from there.
You can do this via the API. The endpoint is Get webhook logs:
[GET] /hooks/{hookId}/logs
To use the above endpoint, you need the hookId of the scenario first. You can use the endpoint Get scenario details to get the hookId of the scenario.
[GET] /scenarios/{scenarioId}
Hope this helps! If you are still having trouble, please provide more details.
— @samliew
Thank you @samliew. I made several tries, check scopes, keys and method request but I’m getting this error message :
RuntimeError
[404]
Error
Cannot GET /api/https:/eu2.make.com/api/v2/hooks/\[MY_API_KEY\]/logs
:
Error
Cannot GET /api/https:/eu2.make.com/api/v2/hooks/\[MY_API_KEY\]/logs
You inserted an absolute (full) URL into the URL field.
You shouldn’t be seeing “https:” anywhere in the middle of URLs.
Therefore, you have added https:/eu2.make.com/api/ incorrectly somewhere.
If you read the description below it, it says:
Enter a path relative to https://__________ … For example: __________
So you simply need to OMIT the first part of the URL that will be added for you.
Hope this helps! If you are still having trouble, please provide more details.
— @samliew
Thank you @samliew. Obviously, I could have guessed the solution on my own.
Thank you again for your help.