Skip to main content

list_automations

List the project's automations, newest first — each with its trigger, action, condition, enabled flag, and schedule timing.

Request

GET /api/v1/ops/projects/{project}/automations
ParameterInTypeRequiredDescription
projectpathstringyesThe project's public id.
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/automations"

Response

200 OK — an array of automation objects.

[
{
"id": "a1b2c3d4-0000-0000-0000-000000000000",
"name": "Nightly smoke suite",
"enabled": true,
"trigger": { "type": "schedule", "cron": "0 8 * * *", "tz": "America/New_York" },
"action": { "type": "run_features", "featureIds": [12, 15] },
"condition": null,
"nextDueUtc": "2026-06-16T12:00:00.0000000Z",
"lastTriggeredUtc": null
}
]

Errors

HTTPWhen
404 not_foundNo such project in this workspace.