delete_variable
Delete a variable. The name is case-sensitive.
Request
DELETE /api/v1/ops/projects/{project}/variables/{name}
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
project | path | string | yes | The project's public id. |
name | path | string | yes | The variable name (case-sensitive). |
- cURL
- CLI
- MCP
curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/variables/BASE_CURRENCY"
testvibe vars delete BASE_CURRENCY
Tool delete_variable — required name, optional project. Destructive.
Response
{ "ok": true, "name": "BASE_CURRENCY" }
Errors
| HTTP | When |
|---|---|
404 not_found | No such project, or no variable with that name. |