How to query AutoSys to find all jobs that started within a 15-minute interval
search cancel

How to query AutoSys to find all jobs that started within a 15-minute interval

book

Article ID: 451923

calendar_today

Updated On:

Products

Autosys Workload Automation

Issue/Introduction

How to query AutoSys Workload Automation to retrieve a list of all jobs that started within a specific 15-minute time window.

Environment

Workload Automation AE 24.x

Resolution

To query job execution details for a specific time window, use the AutoSys Web Server (AEWS) REST API with a runStartTime filter.

Execute a GET request against the /AEWS/job-run-info endpoint specifying the start and end ISO 8601 timestamps:

curl -X GET 'https://<AEWS Host>:9443/AEWS/job-run-info?filter=runStartTime>=2026-07-31T14:00:00Z;runStartTime<=2026-07-31T14:15:00Z' \
  -k --user "<username>:<password>" \
  -i > /tmp/foo.out

Notes:

  • Replace <AEWS Host> with the fully qualified domain name or IP address of your AutoSys Web Server.

  • Replace <username> and <password> with valid AutoSys credentials with permissions to query job run data.

  • Timestamps must be formatted in standard UTC/ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).

 

For more detail see Autosys Workload Automation REST API Swagger Documentation