Skip to main content
DELETE
/
v1
/
projects
/
{projectId}
/
test-cases
/
{testCaseId}
Delete Test Case
curl --request DELETE \
  --url https://api.pathors.com/v1/projects/{projectId}/test-cases/{testCaseId} \
  --header 'Authorization: <authorization>'

Request

DELETE https://api.pathors.com/v1/projects/{projectId}/test-cases/{testCaseId}

Path Parameters

projectId
string
required
The project ID
testCaseId
string
required
The test case ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

Returns a confirmation message.

Example

curl -X DELETE https://api.pathors.com/v1/projects/{projectId}/test-cases/{testCaseId} \
  -H "Authorization: Bearer dk_your_key"
{
  "message": "Test case deleted"
}