Delete a Suite
Deletes a suite from an existing project. This is a logical delete: commits wont be tested again with this suite, but you will still be able to see old builds from this suite.
Auth&ACL
Users can access this API (collaborators cannot), via OAuth suites
scope (or HTTP Basic Authentication for development purposes).
Definition
DELETE https://v1.continuityapp.ws/projects/<project_id>/suites/<suite_id>
Example request
$ curl https://v1.continuityapp.ws/projects/123456789123456789/suites/123456789123456789?oauth_token=<access_token> \
-X DELETE
Returns
A confirmation about suite deletion.
Example response
{
"response": {
"destroyed": true
}
}
Errors
There are no specific errors for this API.
comments powered by Disqus