I'm using AutoComplete with Dynamic Data as defined in this URL : https://ej2.syncfusion.com/angular/documentation/auto-complete/data-binding/#bind-to-remote-data
My API looks like getCountries/{key} - Here key used to filter the Data.
For example: If I call getCountries/Ind - It'll list all the Countries starting with Ind
I want to call this API with Parameter on Auto Complete. How to achieve this? The moment I type Ind in AutoComplete textbox, I want to hit this API and pass typed characters as parameter to API and get the Auto Complete suggestions as response.