For the complete documentation index, see llms.txt. This page is also available as Markdown.

get_automation

Read one automation.

Read one automation by its public id: its trigger, action, condition, enabled flag, and schedule timing.

Request

GET /api/v1/ops/projects/{project}/automations/{automationId}
Parameter
In
Type
Required
Description

project

path

string

yes

The project's public id.

automationId

path

string

yes

The automation's public id (from list_automations).

curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
  "$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/automations/$AUTOMATION"
testvibe automations show $AUTOMATION

Tool get_automation{ "automationId": "a1b2c3d4-…" }.

Response

200 OK — one automation object.

Errors

HTTP
When

404 not_found

No such project, or no such automation in this workspace.

Last updated

Was this helpful?