Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

/rest/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 Introduced2.4.0
 


Request Header Parameters

Parameter

Value

Required

Description

Accept

String

Yes

A value of ‘application/json’ must be provided.

 


Sample Call:

Code Block
themeEclipse
curl --insecure -H 'Accept: application/json' -H "Authorization: APIKEY {apiKey}" http://localhost:8080/threadfix/rest/defectTrackers/5/projects?apiKey={apiKey}

 


Sample Output:


Code Block
themeEclipse
{
    "message": "",
    "success": true,
    "responseCode": -1,
    "object": {
        "projects": [
            {
                "name": "Project with \"Quotes\""
            },
            {
                "name": "YourProjectHere"
            },
            {
                "name": "Another Project"
            },
            {
                "name": "test"
            }
        ]
    }
}
 




Page Tree
rootDefect Trackers API