Get Application Analysis Dates (Reserved)


Overview

Retrieve the list of analysis dates for a given application. This API returns all available analysis date associated with the specified application within a domain.

Each analysis entry includes the execution timestamp along with optional metadata such as name and description.

URI

GET /rest/applications/{application}/analysis/dates

Path parameters

name (string)

The unique identifier of the application. This parameter specifies the application for which analysis dates are retrieved.

Responses

application/json

The response contains a list of analysis executions for the specified application.

{
  "results": [
    {
      "name": "",
      "timestamp": "2025-06-23T08:45:00Z",
      "description": ""
    },
    {
      "name": "",
      "timestamp": "2025-06-23T06:48:00Z",
      "description": ""
    }
  ]
}

JSON representation

Property Type Description
results array List of analysis date for the application.
results[].name string Optional name of the analysis timestamp.
results[].timestamp string Analysis date timestamp
results[].description string Optional description of the analysis timestamp