List Suites
List suites from an existing project.
Auth&ACL
Both users and collaborators can access this API, via OAuth suites
scope (or HTTP Basic Authentication for development purposes).
Definition
GET https://v1.continuityapp.ws/projects/<project_id>/suites
Example request
$ curl https://v1.continuityapp.ws/projects/123456789123456789/suites?oauth_token=<access_token>
Returns
A list of suites from an existing project is returned. See Suite Fetch API for suite-related fields explanation.
Example response
{
"response": [
{
"id": 123456789123456780,
"id_str": "123456789123456780",
"name": "RSpec Ruby 1.9.2-p290",
"description": "Run RSpec with Ruby 1.9.2-p290",
"command": "rake spec"
},
{
"id": 123456789123456789,
"id_str": "123456789123456789",
"name": "Cucumber Ruby 1.8.7-p352",
"description": "Run Cucumber with Ruby 1.8.7-p352",
"command": "rake cucumber"
},
]
}
Errors
There are no specific errors for this API.
comments powered by Disqus