How to Display Search Results Using ZOHO.CRM.API.searchRecord with in Zoho interface.

How to Display Search Results Using ZOHO.CRM.API.searchRecord with in Zoho interface.

Hello Community,

I’m currently using the ZOHO.CRM.API.searchRecord API to retrieve results within a module in Zoho CRM. The API works fine, and I can successfully fetch the data.

ZOHO.CRM.API.searchRecord({Entity:"Leads",Type:"phone",Query:"123456789",delay:false})
.then(function(data){
    console.log(data)
})

However, I would like to display the results in the Zoho CRM interface in a way that mimics the native Zoho search experience. Is there a way to integrate or display the fetched data seamlessly in Zoho CRM's UI, similar to how Zoho's native search works?

Any guidance or suggestions on achieving this would be greatly appreciated!

Thanks in advance.