Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
/rest/{version}/defectTrackers/{defectTrackerId}/projects
Descriptor | Value |
---|---|
HTTP Method | GET |
Description | Get a list of projects for a defect tracker, as long as it has a default username and password. |
Required Permission | Manage Defect Trackers |
Version Introduced | 2.4.0 |
Request Header Parameters
Parameter | Value | Required | Description |
---|---|---|---|
Accept | String | Yes | A value of ‘application/json’ must be provided. |
Sample Call:
Code Block | ||
---|---|---|
| ||
curl --insecure -H 'Accept: application/json' -H "Authorization: APIKEY {apiKey}" http://localhost:8080/threadfix/rest/defectTrackers/5/projects |
Sample Output:
Code Block | ||
---|---|---|
| ||
{ "message": "", "success": true, "responseCode": -1, "object": { "projects": [ { "name": "Project with \"Quotes\"" }, { "name": "YourProjectHere" }, { "name": "Another Project" }, { "name": "test" } ] } } |
Page Tree | ||
---|---|---|
|