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
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
project | path | string | yes | The project's public id. |
- cURL
- CLI
- MCP
curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/automations"
testvibe automations list
Tool list_automations — no arguments (uses the configured project).
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
| HTTP | When |
|---|---|
404 not_found | No such project in this workspace. |