v1
latestOpenAPI 3.1.02026-07-22100167210.7 KBAutomation
Update Automation
Updates an existing automation. Only the fields provided in the request body will be updated.
patch/v1/automations/{id}
Path parameters
idstring uuid required
The unique identifier of the automation
Request body
Example request
{
"triggers": [
{
"config": {
"schedule": "0 9 * * 1-5",
"timezone": "America/New_York"
}
}
]
}Response
Automation updated successfully
Example response
{
"automation": {
"triggers": [
{
"config": {
"schedule": "0 9 * * 1-5",
"timezone": "America/New_York"
}
}
]
}
}