Oracle Database Scheduler API

Oracle Scheduler job management

Operations 2

GET /database/scheduler/jobs/ Oracle Database Get all scheduler jobs #
GET /database/scheduler/jobs/{owner},{job_name} Oracle Database Get a specific scheduler job #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/oracle-database-scheduler-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

oracle-database-scheduler-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle Database Oracle REST Data Services (ORDS) Scheduler API
  description: RESTful API for Oracle Database management, monitoring, and data access through Oracle REST Data Services. Provides 300+ endpoints across 17 categories including database administration, performance monitoring, Data Guard management, Data Pump operations, pluggable database lifecycle, APEX management, RDF graph operations, and transactional event queues.
  version: 25.4.0
  contact:
    name: Oracle Support
    url: https://support.oracle.com
    email: support@oracle.com
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/downloads/licenses/standard-license.html
  termsOfService: https://www.oracle.com/legal/terms.html
servers:
- url: https://{host}:{port}/ords
  description: ORDS Server
  variables:
    host:
      default: localhost
      description: ORDS server hostname
    port:
      default: '8443'
      description: ORDS server port
security:
- oauth2: []
- basicAuth: []
tags:
- name: Scheduler
  description: Oracle Scheduler job management
paths:
  /database/scheduler/jobs/:
    get:
      operationId: getSchedulerJobs
      summary: Oracle Database Get all scheduler jobs
      description: Returns a list of all Oracle Scheduler jobs.
      tags:
      - Scheduler
      responses:
        '200':
          description: Scheduler jobs retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchedulerJobList'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /database/scheduler/jobs/{owner},{job_name}:
    get:
      operationId: getSchedulerJob
      summary: Oracle Database Get a specific scheduler job
      description: Returns details about a specific Oracle Scheduler job.
      tags:
      - Scheduler
      parameters:
      - name: owner
        in: path
        required: true
        schema:
          type: string
      - name: job_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Scheduler job details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchedulerJob'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        type:
          type: string
    SchedulerJob:
      type: object
      properties:
        owner:
          type: string
        job_name:
          type: string
        job_type:
          type: string
        state:
          type: string
        enabled:
          type: boolean
        next_run_date:
          type: string
          format: date-time
        last_start_date:
          type: string
          format: date-time
        repeat_interval:
          type: string
    SchedulerJobList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/SchedulerJob'
  responses:
    NotFound:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Authentication required or credentials invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /ords/{schema}/oauth/token
          scopes: {}
        authorizationCode:
          authorizationUrl: /ords/{schema}/oauth/auth
          tokenUrl: /ords/{schema}/oauth/token
          scopes: {}
    basicAuth:
      type: http
      scheme: basic
externalDocs:
  description: ORDS REST API Documentation
  url: https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/25.4/orrst/