Hi @Narayana ,
In SharePoint, the dateTime column is in ISO format : YYYY-MM-DDThh:mm:ssZ
. So you could filter on the Date column like the below. My column name is Date, and it will get all items in 2020 year.
/_api/web/lists/getbytitle('TestList')/items?$filter=Date ge datetime'2020-01-01T00:00:00Z' and Date le datetime'2021-01-01T00:00:00Z'
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.