Matillion DPC Schedules API
Data Productivity Cloud pipeline schedules.
Data Productivity Cloud pipeline schedules.
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/matillion-dpc-schedules-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: Matillion DPC Agents DPC Schedules API
description: 'Specification of the Matillion APIs. Two surfaces are documented: the Data Productivity Cloud (DPC) API, an OAuth2 client-credentials REST control plane for projects, environments, pipeline executions, schedules, and Agents; and the legacy instance-hosted Matillion ETL API, an HTTP Basic REST API for groups, projects, versions, jobs, tasks, and schedules. The DPC control plane is regional - use the eu1 or us1 host. Branches on the Data Productivity Cloud are managed in the UI only and are not exposed as a public API. Note: in 2026 the DPC API documentation was rebranded to docs.maia.ai ("Maia"); the runtime hosts below are unchanged.'
termsOfService: https://www.matillion.com/terms
contact:
name: Matillion Support
url: https://docs.matillion.com
version: '1.0'
servers:
- url: https://eu1.api.matillion.com/dpc
description: Data Productivity Cloud control plane (EU region).
- url: https://us1.api.matillion.com/dpc
description: Data Productivity Cloud control plane (US region).
- url: https://{instance}/rest/v1
description: Legacy Matillion ETL instance-hosted API. Served from the customer's own Matillion ETL VM; authenticate with HTTP Basic. Replace {instance} with your instance host (also exposes /rest/v0).
variables:
instance:
default: your-matillion-etl-instance
description: Host of the customer-operated Matillion ETL instance.
tags:
- name: DPC Schedules
description: Data Productivity Cloud pipeline schedules.
paths:
/v1/projects/{projectId}/schedules:
get:
operationId: listSchedules
tags:
- DPC Schedules
summary: List schedules for a project.
security:
- dpc_oauth: []
parameters:
- $ref: '#/components/parameters/ProjectId'
responses:
'200':
description: A list of schedules.
content:
application/json:
schema:
$ref: '#/components/schemas/ScheduleList'
post:
operationId: createSchedule
tags:
- DPC Schedules
summary: Create a schedule for a project.
security:
- dpc_oauth: []
parameters:
- $ref: '#/components/parameters/ProjectId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ScheduleCreate'
responses:
'201':
description: The created schedule.
content:
application/json:
schema:
$ref: '#/components/schemas/Schedule'
/v1/projects/{projectId}/schedules/{scheduleId}:
get:
operationId: getSchedule
tags:
- DPC Schedules
summary: Get a schedule.
security:
- dpc_oauth: []
parameters:
- $ref: '#/components/parameters/ProjectId'
- $ref: '#/components/parameters/ScheduleId'
responses:
'200':
description: The schedule.
content:
application/json:
schema:
$ref: '#/components/schemas/Schedule'
patch:
operationId: updateSchedule
tags:
- DPC Schedules
summary: Update a schedule.
security:
- dpc_oauth: []
parameters:
- $ref: '#/components/parameters/ProjectId'
- $ref: '#/components/parameters/ScheduleId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ScheduleCreate'
responses:
'200':
description: The updated schedule.
content:
application/json:
schema:
$ref: '#/components/schemas/Schedule'
delete:
operationId: deleteSchedule
tags:
- DPC Schedules
summary: Delete a schedule.
security:
- dpc_oauth: []
parameters:
- $ref: '#/components/parameters/ProjectId'
- $ref: '#/components/parameters/ScheduleId'
responses:
'204':
description: Schedule deleted.
components:
schemas:
ScheduleList:
type: object
properties:
results:
type: array
items:
$ref: '#/components/schemas/Schedule'
ScheduleCreate:
type: object
properties:
name:
type: string
cron:
type: string
pipelineName:
type: string
environmentName:
type: string
enabled:
type: boolean
required:
- name
- cron
- pipelineName
Schedule:
type: object
properties:
id:
type: string
name:
type: string
cron:
type: string
pipelineName:
type: string
environmentName:
type: string
enabled:
type: boolean
parameters:
ProjectId:
in: path
name: projectId
required: true
schema:
type: string
description: The Data Productivity Cloud project id.
ScheduleId:
in: path
name: scheduleId
required: true
schema:
type: string
description: The schedule id.
securitySchemes:
dpc_oauth:
type: oauth2
description: 'Data Productivity Cloud OAuth2 client-credentials flow. Exchange your client id and secret for a Bearer JWT at the token URL, requesting the audience https://api.matillion.com, then send it as Authorization: Bearer <JWT>.'
flows:
clientCredentials:
tokenUrl: https://id.core.matillion.com/oauth/dpc/token
scopes: {}
etl_basic:
type: http
scheme: basic
description: Legacy Matillion ETL HTTP Basic auth using a Matillion ETL instance user's credentials.