Schedules
Gets a list of schedules.
Args: schedule_filter_model: Filter model used for pagination, sorting, filtering project_name_or_id: Optional name or ID of the project. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.
Returns: List of schedule objects.
false
created
Logical Ops to use to combine filters on list methods.
and
Possible values: 1
20
GET /api/v1/schedules HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"index": 1,
"max_size": 1,
"total_pages": 1,
"total": 1,
"items": [
{
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"user_id": "123e4567-e89b-12d3-a456-426614174000",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"active": true,
"cron_expression": "text",
"start_time": "2025-07-19T22:03:51.915Z",
"end_time": "2025-07-19T22:03:51.915Z",
"interval_second": "text",
"catchup": false,
"run_once_start_time": "2025-07-19T22:03:51.915Z"
},
"metadata": {
"orchestrator_id": "123e4567-e89b-12d3-a456-426614174000",
"pipeline_id": "123e4567-e89b-12d3-a456-426614174000",
"run_metadata": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
},
"resources": {
"user": {
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"active": false,
"activation_token": "text",
"full_name": "",
"email_opted_in": true,
"is_service_account": true,
"is_admin": true,
"default_project_id": "123e4567-e89b-12d3-a456-426614174000"
},
"metadata": {
"email": "",
"external_user_id": "123e4567-e89b-12d3-a456-426614174000",
"user_metadata": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"resources": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
},
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
}
]
}
Gets a specific schedule using its unique id.
Args: schedule_id: ID of the schedule to get. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.
Returns: A specific schedule object.
true
GET /api/v1/schedules/{schedule_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"user_id": "123e4567-e89b-12d3-a456-426614174000",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"active": true,
"cron_expression": "text",
"start_time": "2025-07-19T22:03:51.915Z",
"end_time": "2025-07-19T22:03:51.915Z",
"interval_second": "text",
"catchup": false,
"run_once_start_time": "2025-07-19T22:03:51.915Z"
},
"metadata": {
"orchestrator_id": "123e4567-e89b-12d3-a456-426614174000",
"pipeline_id": "123e4567-e89b-12d3-a456-426614174000",
"run_metadata": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
},
"resources": {
"user": {
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"active": false,
"activation_token": "text",
"full_name": "",
"email_opted_in": true,
"is_service_account": true,
"is_admin": true,
"default_project_id": "123e4567-e89b-12d3-a456-426614174000"
},
"metadata": {
"email": "",
"external_user_id": "123e4567-e89b-12d3-a456-426614174000",
"user_metadata": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"resources": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
},
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
}
Updates the attribute on a specific schedule using its unique id.
Args: schedule_id: ID of the schedule to get. schedule_update: the model containing the attributes to update.
Returns: The updated schedule object.
Update model for schedules.
PUT /api/v1/schedules/{schedule_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}
{
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"user_id": "123e4567-e89b-12d3-a456-426614174000",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"active": true,
"cron_expression": "text",
"start_time": "2025-07-19T22:03:51.915Z",
"end_time": "2025-07-19T22:03:51.915Z",
"interval_second": "text",
"catchup": false,
"run_once_start_time": "2025-07-19T22:03:51.915Z"
},
"metadata": {
"orchestrator_id": "123e4567-e89b-12d3-a456-426614174000",
"pipeline_id": "123e4567-e89b-12d3-a456-426614174000",
"run_metadata": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
},
"resources": {
"user": {
"body": {
"created": "2025-07-19T22:03:51.915Z",
"updated": "2025-07-19T22:03:51.915Z",
"active": false,
"activation_token": "text",
"full_name": "",
"email_opted_in": true,
"is_service_account": true,
"is_admin": true,
"default_project_id": "123e4567-e89b-12d3-a456-426614174000"
},
"metadata": {
"email": "",
"external_user_id": "123e4567-e89b-12d3-a456-426614174000",
"user_metadata": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"resources": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
},
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false,
"name": "text"
}
Deletes a specific schedule using its unique id.
Args: schedule_id: ID of the schedule to delete.
DELETE /api/v1/schedules/{schedule_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
No content
Last updated
Was this helpful?