As of December 31st, 2023 ThreadFix 2.X has reached End of Life and is no longer supported. For any further information please contact the Success and Implementation team.

Skip to end of metadata
Go to start of metadata

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

Compare with Current View Page History

« Previous Version 4 Next »

/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:

curl --insecure -H 'Accept: application/json' http://localhost:8080/threadfix/rest/defectTrackers/5/projects?apiKey={apiKey}

 

Sample Output:


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


 


  • No labels