Azure AI Search Push API
Index Any Data Using Azure AI Search Push API The most adaptable method for adding data to an Azure AI Search index is the REST API. Any programming language or interactive application that can send JSON requests to an endpoint can be used. Supported REST API Operations There are two supported REST APIs provided by AI Search- Search and management APIs. How To Call Search REST API ? If you want to call any of the search APIs you need to: Use the HTTPS endpoint provided by your search service, you must include an api-version in the URI. The request header must include an api-key attribute. To find the endpoint, api-version, and api-key go to the Azure portal. In the portal, navigate to your search service, then select Search explorer. Choose Keys to locate the api-key on the left. If you're doing more than just accessing the index with the REST API, you can use either the primary or secondary admin key. You can make and use query keys if you only need to search an index. An a...