curl --request DELETE \
--url https://api.example.com/api/v2/projects/{project_id}/agent-datasets/{dataset_id}/test-cases/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"test_case_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'{}Remove multiple agent test cases in a single request. Use for batch cleanup operations.
Maximum 100 test cases per request.
curl --request DELETE \
--url https://api.example.com/api/v2/projects/{project_id}/agent-datasets/{dataset_id}/test-cases/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"test_case_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
EmptyResponse()
The response is of type EmptyResponse · object.