List Suite Dependencies
List all the Dependencies for a Suite.
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/<suite_id>/dependencies
Example request
$ curl https://v1.continuityapp.ws/projects/123456789123456780/suites/123456789123456789/dependencies?oauth_token=<access_token>
Returns
A list of dependencies is returned.
Example response
{"response":
[
{
"id": 123456789123456780,
"id_ref": "123456789123456780",
"name": "memcached-1.4.15",
"prefix": "/srv/memcached",
"launch_command": "memcached -d"
},
{
"id": 123456789123456781,
"id_ref": "123456789123456781",
"name": "memcached-1.4.15-2",
"prefix": "/srv/memcached2",
"launch_command": "memcached -p 11212 -d"
}
]
}
Errors
There are no specific errors for this API.
comments powered by Disqus