
Currently working on a Get Items, but running into an issue where when using an oData filter the body comes back empty.
I want to pull all of the items that were created with today's date.
I've tried a few different expressions with no success.
I've tried:
Created eq 'utcNow(yyyy-MM-dd)'
Created eq 'startOfday(utcNow(),'yyyy-MM-dd')'
I've tried a few variation of the formatting of the date, but no dice.
So I tried removing the oData filter just to see the formatting of the SharePoint list item and this is what I get.
"Created":"2023-05-03T15:58:26Z"
Any thoughts? I would like to not pull all items and then do a new filter step if possible.
Use:
Created ge ‘startOfday(utcNow())’
use the dynamics content to write the function
startOfday(utcNow())
Hope it helps !