getApplicationDeploymentLog

get

/ccadmin/v1/applicationDeployment/{id}/logs

Get logs for Application Deployment ID. Returns Application Deployment logs matching a specified ID

Request

Supported Media Types
Path Parameters
  • The ID of the Application Deployment to retrieve.
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : getApplicationDeploymentLog_response
Type: object
Show Source
Nested Schema : errors
Type: array
errors for the application deployment
Show Source
Nested Schema : results
Type: array
results for the application deployment
Show Source
Example Response (application/json)
{
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccadmin/v1/applicationDeployment/5600001/logs"
        }
    ],
    "results":[
    ],
    "errors":[
        {
            "error":{
                "details":[
                    {
                        "message":"java.io.FileNotFoundException: http://localhost:9080/controller/v1/logging/deployment/5600001",
                        "class":"atg.cloud.rest.CCRestClient$CCRestClientException"
                    },
                    {
                        "message":"http://localhost:9080/controller/v1/logging/deployment/5600001",
                        "class":"java.io.FileNotFoundException"
                    }
                ]
            }
        }
    ]
}

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top