Hi is possible to filter by an value using restapi?example of all records from api call on Table1 usinge GET https://mywebsite.com/api/list/Table1"success": true,
“prod_per_MIS”: [
{
“InsertDate”: “2021-01-01”,
“user”: “User1”,
“TotHours”: 8
},
{
“InsertDate”: “2021-01-02”,
“user”: “User1”,
“TotHours”: 5
},
{
“InsertDate”: “2021-01-03”,
“user”: “User2”,
“TotHours”: 3
}
]Is possible to filter by InsertDate between “2021-01-01” - “2021-01-02” ?
If yes what query params should I use?