How to access a passed parameter of webhook rest rule in an action

I have a webhook rest-rule defined which accepts a parameter in url.
ex. https://apps.appivo.com/api/app/SAKQA/service/NewMissedCallAlert/?mobile=7977307742
mobile number being the parameter

We invoke an action from that rule, which is another webhook and we want to pass on that parameter to action’s url (

https://myservice/NewMissedCallAlert/?mobile={{passed_mobile_number}}

How do we access the passed_mobile_number?

Hello Parv,

Starting tomorrow you will be able to access the request-parameters as follows:

https://myservice/NewMissedCallAlert/?mobile={{request.param.mobile}}

Thanks,

/Johan/

Hello Johan,

This is very helpful

Many thanks,
Parv