Schedule
This endpoint is used to create, update, search or delete schedules for a particular workspace inside an organization, this is useful when you need to create schedule task or running jobs in a particular time.
Entity fields:
data.type
string
Should be "template"
data.attributes.cron
string
Cron expression to schedule a job inside a workspace. For more information please visit Quartz documentation.
data.attributes.tcl
string
Terrakube configuration language in base64
data.attributes.templateReference
string
Terrakube template id
Example:
{
"data": {
"type": "schedule",
"attributes": {
"cron": "0 0/1 * * * ?",
"tcl": "{{templateSample}}"
}
}
}
Supported Operations
Returns an instance of type schedule
workspace Identifier
schedule Identifier
GET /api/v1/workspace/{workspaceId}/schedule/{scheduleId} HTTP/1.1
Host:
Accept: */*
Successful response
{
"data": {
"type": "text",
"id": "text",
"attributes": {
"createdBy": "text",
"createdDate": "2025-06-27T09:02:03.693Z",
"cron": "text",
"description": "text",
"enabled": true,
"tcl": "text",
"updatedBy": "text",
"updatedDate": "2025-06-27T09:02:03.693Z"
},
"relationships": {
"workspace": {
"id": "text",
"type": "workspace"
}
}
},
"included": [
{
"attributes": {},
"id": "text",
"relationships": {},
"type": "text"
}
]
}
Creates an item of type schedule and adds it to schedule
workspace Identifier
POST /api/v1/workspace/{workspaceId}/schedule HTTP/1.1
Host:
Content-Type: application/vnd.api+json
Accept: */*
Content-Length: 297
{
"data": {
"type": "text",
"id": "text",
"attributes": {
"createdBy": "text",
"createdDate": "2025-06-27T09:02:03.693Z",
"cron": "text",
"description": "text",
"enabled": true,
"tcl": "text",
"updatedBy": "text",
"updatedDate": "2025-06-27T09:02:03.693Z"
},
"relationships": {
"workspace": {
"id": "text",
"type": "workspace"
}
}
}
}
Successful response
{
"data": {
"type": "text",
"id": "text",
"attributes": {
"createdBy": "text",
"createdDate": "2025-06-27T09:02:03.693Z",
"cron": "text",
"description": "text",
"enabled": true,
"tcl": "text",
"updatedBy": "text",
"updatedDate": "2025-06-27T09:02:03.693Z"
},
"relationships": {
"workspace": {
"id": "text",
"type": "workspace"
}
}
}
}
Deletes an instance of type schedule
workspace Identifier
schedule Identifier
DELETE /api/v1/workspace/{workspaceId}/schedule/{scheduleId} HTTP/1.1
Host:
Accept: */*
Successful response
No content
Modifies an instance of type schedule
workspace Identifier
schedule Identifier
PATCH /api/v1/workspace/{workspaceId}/schedule/{scheduleId} HTTP/1.1
Host:
Content-Type: application/vnd.api+json
Accept: */*
Content-Length: 297
{
"data": {
"type": "text",
"id": "text",
"attributes": {
"createdBy": "text",
"createdDate": "2025-06-27T09:02:03.693Z",
"cron": "text",
"description": "text",
"enabled": true,
"tcl": "text",
"updatedBy": "text",
"updatedDate": "2025-06-27T09:02:03.693Z"
},
"relationships": {
"workspace": {
"id": "text",
"type": "workspace"
}
}
}
}
Successful response
No content
Last updated
Was this helpful?