Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator?
I'm getting errors when testing this (or it just doesn't work). The API Basics page doesn't discuss this.
Thanks in advance!
Solved! Go to Solution.
Views
Replies
Total Likes
Hello,
To achieve this in Fusion you can use e.g. a search module.
Important is to put all search keywords into an array.
If you prefer a direct API call, it would look like this:
{
"fields": "*",
"$$LIMIT": 200,
"name": [
"keyword1",
"keyword2"
],
"name_Mod": "in"
}
Regards
Lars
Hello,
To achieve this in Fusion you can use e.g. a search module.
Important is to put all search keywords into an array.
If you prefer a direct API call, it would look like this:
{
"fields": "*",
"$$LIMIT": 200,
"name": [
"keyword1",
"keyword2"
],
"name_Mod": "in"
}
Regards
Lars
Lars,
You ROCK!
Thank you so much!
Views
Replies
Total Likes