Crucible 2.7 : Project Service

The content on this page is deprecated. Please see the separate documentation space for developer reference material about FishEye and Crucible.

Provides access to the projects defined in a Crucible instance. At present this interface is read-only.

Get Project List


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}
}}