Skip to main content

list_configs

List the Playwright configurations runs can execute under — the template's plus any the project has defined.

Request

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

Response

[
{ "name": "Default", "source": "template" },
{ "name": "Mobile", "source": "project" }
]

Pass a name as the config argument of run_feature.

Errors

HTTPWhen
404 not_foundNo such project in this workspace.