...
The filter and build IDs are available in the Test Explorer URL:
If you are using the Jira Xray traceability report (in addition to, or instead of, the Parasoft traceability report), the test information sent to Jira must include the Fix Version field. By default, the DTP API does not populate the Fix Version field when it creates test execution entities in Jira, but you can add the fixVersions
fixVersion
parameter to your API and specify one or more values to populate the field:
No Format |
---|
curl -X POST "https://<host>:<port>/grs/api/v1.7/linkedApps/configurations/1/syncTestCases?filterId=<filterID>&buildId=<buildID>&fixVersionsfixVersion=<version1>,<version2>" |
You must also first enable the Version field in your Jira project to use the fixVersions
parameter fixVersion
parameter. The value of the parameter must match the version specified in your Jira project. In the following example, tests would be updated for fixVersionsfixVersion=1.0
:
Refer to the Jira documentation for information about configuring versions.
...