Reputation: 16219
In logic app I want to use multiple values into $filter
"HTTP": {
"inputs": {
"headers": {
"Authorization": "mytoken",
"Ocp-Apim-Subscription-Key": "key"
},
"method": "GET",
"queries": {
"$filter": "(Number eq '123')"
I want to check Number
with 123, 456 , 898
how can i add multiple values into above $filter statement ?
Upvotes: 0
Views: 1182
Reputation: 42043
You just need to use "$filter": "(Number eq '123' or Number eq '456' or Number eq '898')"
, besides, without ()
, it will also work.
Test with an Azure REST API:
Upvotes: 1