All Versions
Crucible 4.2 DocumentationCrucible 4.1 Documentation
Crucible 4.0 Documentation
More...
Provides access to the projects defined in a Crucible instance. At present this interface is read-only.
Method: GET
URL:
/projects-v1
Description:
Returns a list of projects.
Status Code:
200 (OK) on success
Example XML:
<projects>
<projectData>
<allowReviewersToJoin>false</allowReviewersToJoin>
<id>1</id>
<key>CR</key>
<name>Default Project</name>
<permissionSchemeId>1</permissionSchemeId>
</projectData>
<projectData>
...
</projectData>
</projects>
Example JSON:
{"projects":{"projectData":{
"allowReviewersToJoin":false,
"id":1,
"key":"CR",
"name":"Default Project",
"permissionSchemeId":1}
}}