Counts the number request for download URL. (ADAS can't count the actual download as it is done directly from the Azure Blob).

download iconDownload spec

Endpoint

GET
undefined/search/documents/download-count

Get a summary of the total number of get download URL requests made, including a count per documentGroup distibution between a provided date range.

arrowRequest

Query Parameters

        Body Parameters

        Responses

        successful operation.

        arrowBody

        application/json

        REQUEST

        1
        2
        3
        curl --request GET \
             --url 'https://example.com/search/documents/download-count?fromDate=2023-08-14&toDate=2023-08-14&gmt=-5.5' \
             --header 'accept: application/json'

        RESPONSE

        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        {
          "fromDate": "2023-08-14",
          "toDate": "2023-08-04",
          "gmt": -5.5,
          "totalCount": 379777,
          "groupDownloads": [
            {
              "groupName": "string",
              "downloadCount": "string"
            }
          ]
        }