delete_load_test
Delete a load test.
Last updated
Was this helpful?
Delete a load test.
Delete a load test (a kind load feature) and its stored configuration and generated k6 script. This only affects load tests — functional features are untouched, and a 409 is returned if the target turns out to be a functional feature.
Deletion is permanent. Past load runs live on the run spine and are not removed by this call.
DELETE /api/v1/ops/projects/{project}/load/{loadTest}project
path
string
yes
The project's public id.
curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
"$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/load/51"testvibe load delete 51Tool delete_load_test — { "loadTest": "Checkout under load" }. Marked destructive.
200 OK
{ "deleted": true, "featureId": 51 }404 not_found
No such load test in this project.
409 conflict
The target feature is not a load test.
Last updated
Was this helpful?
Was this helpful?
