Home > Software design >  How to forward a request as it is using Azure logic app without defining schema
How to forward a request as it is using Azure logic app without defining schema

Time:03-04

I have a logic app which gets some data from stripe. I want to forward request to some other api based on some property. Is it possible to just pass the request without defining schema. Is there any other way to just forward the request as it is without any modifications to data ? enter image description here

CodePudding user response:

If you want the calling application to ignore the schema you've defined, you can turn this setting off ...

Schema Validation

... alternatively, remove the schema entirely. You don't actually need on but it does do is help you with subsequent actions where the values are strongly defined.

  • Related