Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section

List Active Jobs

Request Method GET
Description

Returns a list of all the active jobs in Datameer. This list displays the job status, file name, job name, file ID, UUID, creation date, job execution ID, estimated time and start time.

URI Syntax


No Format
curl -u '<username>:<password>' -X GET 'http://<Datameer-serverIP>:<port-number>/apirest/job-executionjobs/list-running'


Example Response


Code Block
[
  {
    "jobStatus": "RUNNING",
    "fileName": "Workbook1",
    "jobName": "Workbook job",
    "fileId": 5,
    "uuid": "73b2800b-ed90-47ef-abdc-ce516a980173",
    "creationDate": 1580808994422,
    "jobExecutionId": 3,
    "dapJobConfigurationId": 4,
    "estimatedTime": 0,
    "startTime": 1582878238075
  }
]



...