ADAS Test

Upload count per document group on a date range.

Version 2.0.0
download iconDownload spec

Endpoint

GET
undefined/search/documents/count

Get a summary of the total number of uploads made, with a count per documentGroup 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/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-14",
          "gmt": -5.5,
          "totalCount": 379777,
          "groupUploads": [
            {
              "groupName": "string",
              "uploadCount": "string"
            }
          ]
        }