0

How can I get data for specific date, I want the schedule to get payout based on current date every day.

Logic App workflow

data from Shopify

ZygD
  • 22,092
  • 39
  • 79
  • 102
  • Please add code and data as text ([using code formatting](//stackoverflow.com/editing-help#code)), not images. Images: A) don't allow us to copy-&-paste the code/errors/data for testing; B) don't permit searching based on the code/error/data contents; and [many more reasons](//meta.stackoverflow.com/a/285557). Images should only be used, in addition to text in code format, if having the image adds something significant that is not conveyed by just the text code/error/data. – Adrian Mole Nov 04 '21 at 15:09

1 Answers1

0

I want the schedule to get payout based on current date every day.

It works for scheduling, as you have done (i.e.. Recurrence). You can set the trigger in the interval for 1 day. Here is the screenshot for your reference. enter image description here

How can i get data for specific date

For this you can use Parse json and Add Filter array connector and retrieve the data that is specified for that particular date. Here is the screenshot for your reference.

enter image description here

Here is the raw output screenshot

enter image description here

SwethaKandikonda
  • 7,513
  • 2
  • 4
  • 18
  • Your solution was partly right, i used utcnow() to get the data from current date instead of using hardcode (2021-11-02), i will share my solution soon. Thank you for you response! – ronzyintegration Nov 04 '21 at 19:34