I've been using an HTTP Connector inside logic app to GET some data from an API.
But I'm facing an issue since by testing in POSTMAN I get the following data as the body response.
{
"billingFromDate": "11/30/2020 12:00:00 AM +00:00",
"billingToDate": "12/31/2020 12:00:00 AM +00:00"
}
but in the logic app I get this:
{
"billingFromDate": "11/30/2020 12:00:00 AM +00:00",
"billingToDate": "12/31/2021 12:00:00 AM +00:00"
}
It is adding a year to the billingToDate variable.
Is there any configuration inside the logic app that could prevent from updating any datetime from body response in the HTTP Connector?
question from:
https://stackoverflow.com/questions/65910374/azure-logic-app-http-body-response-modifies-datetime-values 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…