Skip to main content
DELETE
/
projects
/
{project_id}
/
benchmarks
/
{benchmark_id}
/
tests
/
{test_id}
curl --location --request DELETE 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/benchmarks/7d9c8f90-1234-5678-9abc-def012345678/tests/1234' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
// No response body

Authentication

Authorization
string
required
Bearer token

Path Parameters

project_id
string
required
The unique identifier of the project (UUID format)
benchmark_id
string
required
The unique identifier of the benchmark (UUID format)
test_id
integer
required
The unique identifier of the test

Response

Returns a 204 No Content status on successful deletion.
Deleting a test will permanently delete all associated run history and evaluation results. This action cannot be undone.
curl --location --request DELETE 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/benchmarks/7d9c8f90-1234-5678-9abc-def012345678/tests/1234' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN'
// No response body