Skip to content

Get Execution Details

This REST API allows users to retrieve execution details of all executed deployments

Endpoint Details

URL Structure

http(s)://<EPMWARE_URL>/service/api/deployment/get_execution_details

Method

GET

Request Examples

Using curl

# Get all executions

curl GET 'https://demo.epmwarecloud.com/service/api/deployment/get_execution_details' \
  -H 'Authorization: Token 15388ad5-c9af-4cf3-af47-8021c1ab3fb7'

Response Format

Successful Response

{
    "startIndex": "0",
    "pageSize": "25",
    "totalCount": "550",
    "resultSize": "0",
    "sortType": "desc",
    "sortBy": "deploymentId",
    "queryTimeMS": "1779910471307",
    "vEWVDeploymentExecutions": [
        {
            "statusMeaning": "Completed",
            "depConfigId": "42",
            "name": "Auto",
            "description": "Auto Deploy",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "appName": "GS_VERSION_9",
            "deploymentId": "3655",
            "startDate": "2026-05-20T13:09:20Z",
            "endDate": "2026-05-20T13:09:32Z",
            "status": "C",
            "taskId": "14593",
            "depFileExists": "true",
            "message": "Request IDs : [Success : 1228]"
        },
        {
            "statusMeaning": "Completed",
            "depConfigId": "42",
            "name": "Auto",
            "description": "Auto Deploy",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "appName": "AV_ASO",
            "deploymentId": "3636",
            "startDate": "2026-05-14T19:42:56Z",
            "endDate": "2026-05-14T19:43:02Z",
            "status": "C",
            "taskId": "14558",
            "depFileExists": "true",
            "message": "Request IDs : [Success : 1222]"
        },
        {
            "statusMeaning": "Failed",
            "depConfigId": "42",
            "name": "Auto",
            "description": "Auto Deploy",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "appName": "HFM",
            "deploymentId": "3635",
            "startDate": "2026-05-14T09:52:56Z",
            "endDate": "2026-05-14T09:55:26Z",
            "status": "E",
            "taskId": "14549",
            "depFileExists": "true",
            "message": "Timeout : Deployment ID [3635] exceeded maximum time allowed to complete deployments [2 minutes]"
        }
    ]
}