List Projects
List projects for the user doing the request. Both owned project and projects where the user is collaborating to are returned.
Auth&ACL
Both users and collaborators can access this API, via OAuth projects
scope (or HTTP Basic Authentication for development purposes).
Definition
GET https://v1.continuityapp.ws/projects
Example request
$ curl https://v1.continuityapp.ws/projects?oauth_token=<access_token>
Returns
A list of owned project and projects where the user is collaborating is returned. See Project Fetch API for project-related fields explanation.
Example response
{
"response": [
{
"id": 123456789123456780,
"id_str": "123456789123456780",
"name": "Sinatra",
"description": "Classy web-development dressed in a DSL",
"repository_url": "git@github.com:sinatra/sinatra.git",
"build_state": "new",
"owned": true
},
{
"id": 123456789123456789,
"id_str": "123456789123456789",
"name": "Rails",
"description": "",
"repository_url": "git@github.com:sinatra/sinatra.git",
"build_state": "new",
"owned": false
}
]
}
Errors
There are no specific errors for this API.
comments powered by Disqus