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

Request

DELETE https://api.pathors.com/v1/projects/{projectId}/test-suites/{testSuiteId}

Path Parameters

projectId
string
required
The project ID
testSuiteId
string
required
The test suite 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-suites/{testSuiteId} \
  -H "Authorization: Bearer dk_your_key"
{
  "message": "Test suite deleted"
}