Delete a Test

API Explorer: /tests/{testId}

To delete a test, DELETE its ID (you need to know the testId). The sample code deletes a test with an ID of 1234567. Use the testId of the actual test to delete in place of the 1234567.

If you do not know the ID of the test to delete, use the List Tests section to return a list of your created tests.

Response codes associated with deleting a test include 204 (if the test was successfully deleted) and 404 (if the testId does not exist).

Delete a Test

curl 'https://a.blazemeter.com/api/v4/tests/1234567' \
	-X DELETE \
	--user 'api_key_id:api_key_secret'

Response204 No content