I have a Web API that is expecting a list of objects as the payload, I have an automation schedule that triggers on schedule and calls the webAPI via Action.
I would like to define the following in the Action Parameter and in the Webhook Input Parameter
{{parameterA:”hello”, parameterB:”world”}, {parameterA:”hello!”,parameterB:”world!”}}
I defined the Action Parameter as follows:
1 struct containing 2 fields: parameterA, parameterB
However, I’m not able to map the action parameter to a webhook parameter
I tried to different settings in the webhook parameter, but no luck there.
I can’t find a struct type in the parameter type list.
Question is how can i map a struct in the action parameter in the webhook input parameter?
I basically need to send a list of objects (struct of parameterA, parameterB)
Thanks


