-
Suggestion
-
Resolution: Unresolved
-
1
-
2
-
Issue Summary
Recently the “Version Driver” feature was rolled out, see the change notes here. The drivers of a version cannot be fetched with Jira REST API yet. This is used by Connect apps or scripts using username/token authentication.
In the UI we can see Driver
But in the REST API for project named PROJECT we get
$ curl --silent --user <email>:<token> --request GET --url 'https://mycompany.atlassian.net/rest/api/3/project/SOFTWARE/versions' --header 'Accept: application/json' | jq [ { "self": "https://mycompany.atlassian.net/rest/api/3/version/10000", "id": "10000", "name": "1.0.0-alpha", "archived": false, "released": false, "startDate": "2023-08-03", "releaseDate": "2023-09-01", "overdue": false, "userStartDate": "03/Aug/23", "userReleaseDate": "01/Sep/23", "projectId": 10105 } ]