0

I want to get the data over a time period using both PartitionKey and datetime filter.

https://sa.table.core.windows.net/ABC()?$filter=Timestamp%20gt%20datetime'2023-04-03T13:47:52.083669Z'andPartitionKey%20eq%20'123455432'

I have tried this query to get the partitionkeys which are generated after the datetime given but when i am trying , I am getting a 400 (Bad request) error

Prabhanjan
  • 25
  • 5

1 Answers1

2

I believe the reason you are getting this error is because you did not include spaces at proper places.

Please try the following:

https://sa.table.core.windows.net/ABC()?$filter=Timestamp%20gt%20datetime'2023-04-03T13:47:52.083669Z'%20and%20PartitionKey%20eq%20'123455432'

Notice how I added a space before and after and.

Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241