Skip to content

Get Schedule Details

This REST API allows users to retrieve details of all scheduled deployments. .

Endpoint Details

URL Structure

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

Method

GET

Request Examples

Using curl

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

Response Format

Successful Response

{
    "startIndex": "0",
    "pageSize": "25",
    "totalCount": "3",
    "resultSize": "0",
    "sortBy": "",
    "queryTimeMS": "1779911487346",
    "vEWVDeploymentSchedules": [
        {
            "scheduleId": "423",
            "depConfigId": "261",
            "name": "WEEKLY",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "scheduleType": "W",
            "scheduleTypeMeaning": "Weekly",
            "nextDeploymentDate": "2026-05-31T21:17:00Z"
        },
        {
            "scheduleId": "448",
            "depConfigId": "306",
            "name": "Test_weekly",
            "description": "Test_weekly",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "scheduleType": "W",
            "scheduleTypeMeaning": "Weekly",
            "nextDeploymentDate": "2026-05-29T17:38:00Z"
        },
        {
            "scheduleId": "449",
            "depConfigId": "307",
            "name": "Test_Monday_Deploy",
            "description": "Test_Monday_Deploy",
            "deploymentType": "A",
            "enabledFlag": "true",
            "deploymentTypeMeaning": "Application",
            "scheduleType": "W",
            "scheduleTypeMeaning": "Weekly",
            "nextDeploymentDate": "2026-05-31T14:30:00Z"
        }
    ]
}