Hey @Sylvia Tennant ,
Thanks for reaching out to Microsoft Q&A.
Unfortunately, the current Azure Search features don't directly support exporting search results in a straightforward manner as a list. However, you can follow these steps to record the results:
- Manual Copying: Once you have the search results displayed, you might consider manually copying the project names from the results.
- Automating the Process: If you frequently need this data, you could write a script that calls the Azure Search API to execute your query and gathers the results programmatically.
Here's a basic example of how you could do this with the Search Documents REST API:
- Make a
POSTrequest to the Search Documents REST API with your query. - The API will return a JSON object containing your search results, including the names of the projects.
- You can then parse this JSON response to extract and export the project names.
External Tools: If you are comfortable using external tools, consider leveraging Azure Functions or other automation tools to run this query regularly and export the results to a file or database.
Hope this helps!