Skip to content

Instantly share code, notes, and snippets.

@paddy74
paddy74 / azure_search_curl_query.sh
Last active March 29, 2019 18:05
Searching Documents from Azure Search using cUrl (with decoding & JSON Pretify)
#!/bin/sh
SERVICE_NAME='<Azure Search Service Name>'
API_VER='2017-11-11'
ADMIN_KEY='<API KEY>'
CONTENT_TYPE='application/json'
INDEX_NAME='Azure Search Service index name>'
URL="https://$SERVICE_NAME.search.windows.net/indexes/$INDEX_NAME/docs?api-version=$API_VER"
{