Scheduler

GET /api/scheduler/jobs

GET operation for /api/scheduler/jobs

get/api/scheduler/jobs

Query parameters

userstring

Filter jobs by specific user (returns all jobs if not specified)

queuestring

Filter jobs by specific queue (returns all jobs if not specified)

scheduler_idstring

Filter jobs by specific scheduler_id (returns all jobs if not specified)

Headers

X-EDH-USERstring required

SOCA username for authentication

X-EDH-TOKENstring required

SOCA authentication token

Response

Jobs retrieved successfully

successboolean

Example response

{
  "success": true,
  "message": {
    "jobs": [
      {
        "Job_Name": "my_job",
        "Job_Owner": "john.doe@cluster",
        "job_state": "R",
        "queue": "normal"
      }
    ],
    "scheduler_errors": []
  }
}

Changes