Retrieve statistics for a specific tenant and time period

Request

Retrieves the total number of seconds spent indexing videos for the specified period. If no dates are provided, the last calendar month is used.

Security
OAuth2
Query
fromstring, (date)

The start date for the calculation, for example: 2024-05-01.

tostring, (date)

The end date for the calculation, for example: 2024-05-31.

curl -i -X GET \
  'https://your-server/api/status/videoindexing?from=2019-08-24&to=2019-08-24' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful operation

Body
fromstring, (date)

The date video indexing is calculated from.

tostring, (date)

The date video indexing is calculated to.

secondsinteger, (int64)

Number of seconds it takes the tenant to index the videos.

messagestring or null

The message when the calculation fails.

selfobject(Link)

Represents a link to a resource.

Response
{ "from": "2019-08-24", "to": "2019-08-24", "seconds": 0, "message": "string", "self": { "href": "string", "filename_properties": [ … ], "title": "string", "templated": false } }