Hi @Vishal Pallerla!

%iFind index cover different type of searchs, you can find here  all the conditions. For your example the search LIKE '%example%' is equivalent to:

%ID%FIND search_index(IndexTitulo, '*example*')

And it should return exactly the same number of matches.

  • Went to the sea or a lake ❎
  • Hiked/enjoyed nature ✅
  • Traveled somewhere new ❎ 
  • Attended a concert or festival ✅
  • Watched a movie or series ✅
  • Read a book ✅
  • Earned points and redeemed a reward on Global Masters 🏆 ✅
  • Joined READY 2025 🎉❎
  • Spent time with family or friends ✅

If the class of the message extends Ens.Request you can send whatever you want. To validate the class of the message you only need $CLASSNAME method.

I'm not very sure that you should extend EnsLib.REST.Service to define a REST service with URLMap, but anyway, EnsLib.REST.Service is using EnsLib.HTTPInbound.Adapter so you can get the input data from OnProcessInput like this:

Method OnProcessInput(pInput As%GlobalCharacterStream, Output pOutput As%RegisteredObject) As%Status
{
     set authorization = pInput.Attributes("authorization")
...

Here is the doc related: https://docs.intersystems.com/healthconnect20251/csp/docbook/DocBook.UI…

You could create your own adapter based using Embedded Python. Here you can find an example of connection with Python and here an example of a similar adapter that I created for connection with Firebase.

You could create your own adapter based using Embedded Python. Here you can find an example of connection with Python and here an example of a similar adapter that I created for connection with Firebase.