This documentation relates to 2.0.x
If you are using an earlier version, please view the previous versions of the Crucible documentation and select the relevant version.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

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}
}}
  • No labels