Can anyone provide a screen shot or example on how to do a 'Not In' or 'In' search operator? | Adobe Higher Education
Skip to main content
Level 2
November 9, 2023
Resuelto

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

  • November 9, 2023
  • 1 respuesta
  • 649 visualizaciones

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!

Este tema ha sido cerrado para respuestas.
Mejor respuesta de 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 respuesta

lgaertner
lgaertnerRespuesta
Level 9
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

Level 2
November 10, 2023

Lars,

 

You ROCK!

 

Thank you so much!