Webhook Connector and Anticipating payload.
I am creating a scenario that has a webhook trigger. I want to set up a couple different webhooks on this scenario ("Document" Creation and "Image" Creation since the third party app distinguishes them as different events but I effectively see them as one). The problem is the template of the responses are different and Fusion structures the metadata based on what it has received. Therefore, I have to use one or the other and not both. My question is this; is there a way to anticipate the structure of an API payload and route it another connector. My thought is like a dot notation as follows;
If(WEBHOOK.RESPONSE.TYPE == Image; WEBHOOK.RESPONSE.IMAGE; WEBHOOK.RESPONSE.DOCUMENT)
This might not be the clearest way to explain this but essentially I want to be able to anticipate a JSON structure response without having to use the 'hard coded' template metadata that Fusion provides after it has received an example payload.