Contact Us 1-800-596-4880

Get the Deployment History

Tcat Server reached its End of Life in 2017. Contact your Customer Success Manager to determine options for managing, monitoring, or deploying your application.

The GET operation retrieves links to historical information about the specified deployment when appended with /history. Each deployment has a version history. Each individual version contains the applications deployed, the servers deployed to, and the status of the last deployment.

The resulting JSON data format contains two properties: latestVersion contains a link to the latest version of the deployment, and versions is an array that contains links to the individual deployment version details. These properties can be accessed as described in the deployment history details section below.

Example Request:

GET http://localhost:8080/console/api/deployments/local$0bc2e0b8-d9f1-468c-9aa3-2966f07b73e8/history

Example Response:

200
Transfer-Encoding: chunked
Content-Type: application/json
Server: Apache-Coyote/1.1
Date: Wed, 29 Jul 2015 15:21:25 GMT

{
  "latestVersion" : "http://localhost:8080/console/api/deployment/local$0bc2e0b8-d9f1-468c-9aa3-2966f07b73e8/local$917ca518-b34a-434a-bdbc-80aeba7dba70",
  "versions" : [
    "http://localhost:8080/console/api/deployment/local$0bc2e0b8-d9f1-468c-9aa3-2966f07b73e8/local$917ca518-b34a-434a-bdbc-80aeba7dba70"
  ]
}