Google Cloud Scheduler Projects API
The Projects API from Google Cloud Scheduler — 5 operation(s) for projects.
The Projects API from Google Cloud Scheduler — 5 operation(s) for projects.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/google-cloud-scheduler-projects-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Google Cloud Scheduler Projects API
description: The Cloud Scheduler API enables creation and management of scheduled jobs that run on a recurring basis. Jobs can target HTTP endpoints, Pub/Sub topics, or App Engine applications.
version: v1
contact:
name: Google Cloud
url: https://cloud.google.com/scheduler/docs
servers:
- url: https://cloudscheduler.googleapis.com
tags:
- name: Projects
paths:
/v1/projects/{project}/locations/{location}/jobs:
get:
operationId: listJobs
summary: Google Cloud Scheduler List jobs
description: Lists jobs in a project and location.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/ListJobsResponse'
tags:
- Projects
post:
operationId: createJob
summary: Google Cloud Scheduler Create a job
description: Creates a scheduled job.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
/v1/projects/{project}/locations/{location}/jobs/{job}:
get:
operationId: getJob
summary: Google Cloud Scheduler Get a job
description: Gets a scheduled job.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
patch:
operationId: updateJob
summary: Google Cloud Scheduler Update a job
description: Updates a scheduled job configuration.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
delete:
operationId: deleteJob
summary: Google Cloud Scheduler Delete a job
description: Deletes a scheduled job.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
tags:
- Projects
/v1/projects/{project}/locations/{location}/jobs/{job}:pause:
post:
operationId: pauseJob
summary: Google Cloud Scheduler Pause a job
description: Pauses a scheduled job.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
/v1/projects/{project}/locations/{location}/jobs/{job}:resume:
post:
operationId: resumeJob
summary: Google Cloud Scheduler Resume a job
description: Resumes a paused scheduled job.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
/v1/projects/{project}/locations/{location}/jobs/{job}:run:
post:
operationId: runJob
summary: Google Cloud Scheduler Run a job
description: Forces a job to run now.
parameters:
- name: project
in: path
required: true
schema:
type: string
- name: location
in: path
required: true
schema:
type: string
- name: job
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
tags:
- Projects
components:
schemas:
ListJobsResponse:
type: object
properties:
jobs:
type: array
items:
$ref: '#/components/schemas/Job'
nextPageToken:
type: string
HttpTarget:
type: object
properties:
uri:
type: string
format: uri
httpMethod:
type: string
enum:
- HTTP_METHOD_UNSPECIFIED
- POST
- GET
- HEAD
- PUT
- DELETE
- PATCH
- OPTIONS
headers:
type: object
additionalProperties:
type: string
body:
type: string
format: byte
AppEngineHttpTarget:
type: object
properties:
httpMethod:
type: string
appEngineRouting:
type: object
properties:
service:
type: string
version:
type: string
instance:
type: string
relativeUri:
type: string
headers:
type: object
additionalProperties:
type: string
body:
type: string
format: byte
Job:
type: object
properties:
name:
type: string
description: The job name in the format projects/{project}/locations/{location}/jobs/{job}.
description:
type: string
schedule:
type: string
description: Cron schedule in unix-cron format.
timeZone:
type: string
description: Time zone for the cron schedule.
httpTarget:
$ref: '#/components/schemas/HttpTarget'
pubsubTarget:
$ref: '#/components/schemas/PubsubTarget'
appEngineHttpTarget:
$ref: '#/components/schemas/AppEngineHttpTarget'
state:
type: string
enum:
- STATE_UNSPECIFIED
- ENABLED
- PAUSED
- DISABLED
- UPDATE_FAILED
retryConfig:
$ref: '#/components/schemas/RetryConfig'
lastAttemptTime:
type: string
format: date-time
scheduleTime:
type: string
format: date-time
RetryConfig:
type: object
properties:
retryCount:
type: integer
maxRetryDuration:
type: string
minBackoffDuration:
type: string
maxBackoffDuration:
type: string
maxDoublings:
type: integer
PubsubTarget:
type: object
properties:
topicName:
type: string
description: The Pub/Sub topic name.
data:
type: string
format: byte
attributes:
type: object
additionalProperties:
type: string