Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
332 views
in Technique[技术] by (71.8m points)

Azure Logic App HTTP body response modifies Datetime values

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...