Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator? | Community
Skip to main content
New Participant
November 9, 2023
Solved

Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator?

  • November 9, 2023
  • 1 reply
  • 645 views

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!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by lgaertner

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

1 reply

lgaertner
lgaertnerAccepted solution
New Participant
November 10, 2023

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

daBellowsAuthor
New Participant
November 10, 2023

Lars,

 

You ROCK!

 

Thank you so much!