v1
latestOpenAPI 3.1.02026-07-22100167210.7 KBAutomation
Create Automation
Creates a new automation in your organization. The automation is bound to a single environment, which determines the repository (or repository set) and resolved env vars / MCPs / skills used when the automation fires.
post/v1/automations
Request body
Example request
{
"triggers": [
{
"config": {
"schedule": "0 9 * * 1-5",
"timezone": "America/New_York"
}
}
]
}Response
Automation created successfully
Example response
{
"automation": {
"triggers": [
{
"config": {
"schedule": "0 9 * * 1-5",
"timezone": "America/New_York"
}
}
]
}
}